ium_444507/Jenkinsfile_predict_registry
Adam Wojdyla c3df5fd5f6
Some checks failed
s444507-predict-s444356/pipeline/head This commit looks good
s444507-evaluation/pipeline/head There was a failure building this commit
444507-training/pipeline/head There was a failure building this commit
Jenkinsfile updates
2022-05-16 10:52:32 +02:00

16 lines
332 B
Plaintext

pipeline {
agent {
docker {
image 's444507_create_dataset_image'
args '-v /mlruns:/mlruns'
}
}
stages {
stage('Predict values using model from artifact') {
steps {
sh "python3 lab08_predict_from_registry.py"
}
}
}
}