ium_430705/Jenkinsfile_predict_coop
2021-05-27 13:50:54 +02:00

15 lines
294 B
Plaintext

pipeline {
agent {
docker {
image 's430705/ium:4'
args '-v /tmp/mlruns:/tmp/mlruns -v /mlruns:/mlruns '
}
}
stages {
stage('Predict from MLFlow registry') {
steps {
sh "python3 lab09_predict_coop.py"
}
}
}