ium_444417/lab8/Jenkinsfile.mlflow
s444417 87bcdc7d4c
All checks were successful
s444417-training/pipeline/head This commit looks good
s444417-evaluation/pipeline/head This commit looks good
prediction registry
2022-05-15 10:37:28 +02:00

16 lines
301 B
Plaintext

pipeline {
agent {
docker {
image 'mikolajk/ium:latest'
args '-v /mlruns:/mlruns'
}
}
stages {
stage('Stage') {
steps {
sh 'cd lab8'
sh "python predictMlflow.py"
}
}
}
}