ium_444409/Jenkinsfile-predict-s444356-from-registry

17 lines
328 B
Plaintext
Raw Permalink Normal View History

2022-05-11 20:50:59 +02:00
pipeline {
agent {
docker {
image 's444409-create-dataset'
args '-v /mlruns:/mlruns'
}
}
stages {
stage('Predict values using model from artifact') {
steps {
sh "python predict_s444356-from-registry.py"
}
}
}
}