ium_444417/lab8/Jenkinsfile.mlflow

16 lines
293 B
Plaintext
Raw Normal View History

2022-05-15 10:37:28 +02:00
pipeline {
agent {
2022-05-15 10:43:31 +02:00
dockerfile {
2022-05-15 10:37:28 +02:00
args '-v /mlruns:/mlruns'
}
}
stages {
stage('Stage') {
steps {
sh 'cd lab8'
2022-05-15 10:44:42 +02:00
sh 'ls -la'
2022-05-15 10:37:28 +02:00
sh "python predictMlflow.py"
}
}
}
}