ium_430705/Jenkinsfile_predict_coop

19 lines
383 B
Plaintext
Raw Normal View History

pipeline {
agent {
docker {
2021-05-29 12:37:16 +02:00
#image 's430705/ium:4'
image 's434804/ium:0.5'
args '-v /tmp/mlruns:/tmp/mlruns -v /mlruns:/mlruns '
}
}
stages {
stage('Predict from MLFlow registry') {
steps {
2021-05-27 14:36:12 +02:00
sh "cd /tmp"
2021-05-27 14:33:54 +02:00
sh "ls -al"
2021-05-27 14:34:31 +02:00
sh "python3 lab_09_predict_coop.py"
}
}
2021-05-27 13:53:04 +02:00
}}