ium_430705/Jenkinsfile_predict_coop
Michał Zaręba 6c5bdd456d
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-29 12:37:47 +02:00

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"
}
}
}}