ium_444354/Jenkinsfile_mlflow

16 lines
271 B
Plaintext
Raw Normal View History

2022-05-15 19:20:14 +02:00
pipeline {
agent {
2022-05-16 11:13:39 +02:00
dockerfile {
args '-v /mlruns:/mlruns'
2022-05-15 19:20:14 +02:00
}
}
2022-05-15 19:20:14 +02:00
stages {
stage('Prediction') {
steps {
sh 'ls -la'
sh "python ./predictMlflow.py"
}
}
}
}