ium_444354/Jenkinsfile_mlflow
Adrian Charkiewicz bdf10f8606 lab8
2022-05-15 19:20:14 +02:00

15 lines
271 B
Plaintext

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