ium_444507/Jenkinsfile_predict_registry

16 lines
320 B
Plaintext
Raw Normal View History

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