ium_430705/Jenkinsfile_predict_coop

18 lines
348 B
Plaintext

pipeline {
agent {
docker {
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"
}
}
}}