18 lines
400 B
Plaintext
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'
|
|
}
|
|
}
|
|
}
|
|
}
|