ium_430705/Jenkinsfile_predict_coop

19 lines
383 B
Plaintext

pipeline {
agent {
docker {
#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 {
sh "cd /tmp"
sh "ls -al"
sh "python3 lab_09_predict_coop.py"
}
}
}}