ium_444507/Jenkinsfile_predict_registry

16 lines
333 B
Plaintext
Raw Normal View History

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