ium_s449288/lab8/Jenkinsfile_predict_registry
2022-05-14 13:03:16 +02:00

18 lines
400 B
Plaintext

pipeline {
agent {
docker {
image 's449288/ium:lab8.1'
args '-v /mlruns:/mlruns'
}
}
stages {
stage('Stage 1') {
steps {
echo 'Making a prediction with a model from experiment s444417...'
sh "python3 predict_registry.py"
echo 'Prediction made'
}
}
}
}