ium_430705/Jenkinsfile_predict_coop

15 lines
296 B
Plaintext
Raw Normal View History

pipeline {
agent {
docker {
image 's430705/ium:4'
args '-v /tmp/mlruns:/tmp/mlruns -v /mlruns:/mlruns '
}
}
stages {
stage('Predict from MLFlow registry') {
steps {
2021-05-27 13:57:09 +02:00
sh "python3 lab_09_predict_coop.py"
}
}
2021-05-27 13:53:04 +02:00
}}