ium_444507/Jenkinsfile_predict_registry

16 lines
332 B
Plaintext
Raw Normal View History

2022-05-16 09:03:45 +02:00
pipeline {
agent {
docker {
2022-05-16 10:52:32 +02:00
image 's444507_create_dataset_image'
2022-05-16 09:03:45 +02:00
args '-v /mlruns:/mlruns'
}
}
stages {
stage('Predict values using model from artifact') {
steps {
2022-05-16 10:42:07 +02:00
sh "python3 lab08_predict_from_registry.py"
2022-05-16 09:03:45 +02:00
}
}
}
}