ium_430705/Jenkinsfile_predict_coop
Michał Zaręba 20c8ccf4a5
All checks were successful
s430705-evaluation/pipeline/head This commit looks good
s430705-training/pipeline/head This commit looks good
Zaktualizuj 'Jenkinsfile_predict_coop'
2021-05-27 13:57:09 +02:00

15 lines
296 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 lab_09_predict_coop.py"
}
}
}}