ium_444354/Jenkinsfile_mlflow

15 lines
263 B
Plaintext
Raw Normal View History

2022-05-15 19:20:14 +02:00
pipeline {
agent {
docker {
2022-05-16 00:12:57 +02:00
image 'ksero/ium:mlflow'
2022-05-15 19:20:14 +02:00
}
}
2022-05-15 19:20:14 +02:00
stages {
stage('Prediction') {
steps {
sh 'ls -la'
sh "python ./predictMlflow.py"
}
}
}
}