ium_444507/Jenkinsfile_predict_registry
Adam Wojdyla fad30cde27
Some checks failed
s444507-predict-s444356/pipeline/head This commit looks good
s444507-evaluation/pipeline/head This commit looks good
444507-training/pipeline/head There was a failure building this commit
predict from registry
2022-05-16 09:03:45 +02:00

16 lines
320 B
Plaintext

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"
}
}
}
}