ium_478841/jenkins/predict_s444356.registry.Jenkinsfile
2022-05-15 12:33:21 +02:00

17 lines
309 B
Plaintext

pipeline {
agent {
docker {
image 's478841-image:latest'
args '-v /mlruns:/mlruns'
}
}
stages {
stage('Predict using artifacts') {
steps {
sh 'python3 scripts/predict_s444356_registry.py'
}
}
}
}