ium_444417/lab8/Jenkinsfile.mlflow
s444417 5aa89e2306
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:44:42 +02:00

16 lines
293 B
Plaintext

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