From 6cf11e818ab1666cfc68cd57c80c4a619f4da634 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Zar=C4=99ba?= Date: Thu, 27 May 2021 13:50:54 +0200 Subject: [PATCH] Dodanie 'Jenkinsfile_predict_coop' Add test prediction from registry --- Jenkinsfile_predict_coop | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Jenkinsfile_predict_coop 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