ium_444417/lab8/Jenkinsfile.mlflow
s444417 e5de415f69
All checks were successful
s444417-training/pipeline/head This commit looks good
s444417-evaluation/pipeline/head This commit looks good
dockerfile
2022-05-15 10:43:31 +02:00

15 lines
265 B
Plaintext

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