ium_444354/Jenkinsfile_mlflow

18 lines
326 B
Plaintext
Raw Normal View History

2022-05-15 19:20:14 +02:00
pipeline {
agent {
docker {
2022-05-16 00:12:57 +02:00
image 'ksero/ium:mlflow'
2022-05-16 00:34:41 +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"
}
}
}
}