ium_444417/lab8/Jenkinsfile.mlflow

15 lines
269 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 {
2022-05-15 10:44:42 +02:00
sh 'ls -la'
2022-05-15 10:45:52 +02:00
sh "python lab8/predictMlflow.py"
2022-05-15 10:37:28 +02:00
}
}
}
}