2021-05-27 13:50:54 +02:00
|
|
|
pipeline {
|
|
|
|
agent {
|
|
|
|
docker {
|
|
|
|
image 's430705/ium:4'
|
|
|
|
args '-v /tmp/mlruns:/tmp/mlruns -v /mlruns:/mlruns '
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
stages {
|
|
|
|
stage('Predict from MLFlow registry') {
|
|
|
|
steps {
|
2021-05-27 14:33:54 +02:00
|
|
|
sh "ls -al"
|
2021-05-27 14:34:31 +02:00
|
|
|
sh "python3 lab_09_predict_coop.py"
|
|
|
|
|
2021-05-27 13:50:54 +02:00
|
|
|
}
|
|
|
|
}
|
2021-05-27 13:53:04 +02:00
|
|
|
}}
|