13 lines
240 B
Plaintext
13 lines
240 B
Plaintext
pipeline {
|
|
docker {
|
|
image 'ksero/ium:mlflow'
|
|
}
|
|
stages {
|
|
stage('Prediction') {
|
|
steps {
|
|
sh 'ls -la'
|
|
sh "python ./predictMlflow.py"
|
|
}
|
|
}
|
|
}
|
|
} |