ium_478841/jenkins/predict_s444356.registry.Jenkinsfile

17 lines
309 B
Plaintext
Raw Permalink Normal View History

2022-05-15 12:33:21 +02:00
pipeline {
agent {
docker {
image 's478841-image:latest'
args '-v /mlruns:/mlruns'
}
}
stages {
stage('Predict using artifacts') {
steps {
sh 'python3 scripts/predict_s444356_registry.py'
}
}
}
}