ium_444507/Jenkinsfile_predict_registry
Adam Wojdyla de5cb4a5f8
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
Jenkinsfiles updates
2022-05-16 10:42:07 +02:00

16 lines
339 B
Plaintext

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