ium_444507/Jenkinsfile_predict_registry
Adam Wojdyla 743c4c77ad
Some checks failed
s444507-evaluation/pipeline/head There was a failure building this commit
444507-training/pipeline/head There was a failure building this commit
s444507-predict-s444356/pipeline/head This commit looks good
Update jenkinfiles
2022-05-16 10:14:53 +02:00

16 lines
333 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 predict_from_registry.py"
}
}
}
}