ium_430705/Jenkinsfile_predict_coop

18 lines
346 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 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
}}