Dodanie 'Jenkinsfile_predict_coop'

Add test prediction from registry
This commit is contained in:
Michał Zaręba 2021-05-27 13:50:54 +02:00
parent 872488bfc5
commit 6cf11e818a

15
Jenkinsfile_predict_coop Normal file
View File

@ -0,0 +1,15 @@
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"
}
}
}