diff --git a/Jenkinsfile_predict_coop b/Jenkinsfile_predict_coop new file mode 100644 index 0000000..1e9f155 --- /dev/null +++ b/Jenkinsfile_predict_coop @@ -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" + } + } +} \ No newline at end of file