ium_444354/Jenkinsfile_mlflow
Adrian Charkiewicz 2fa5f88c56
Some checks failed
s444354-training/pipeline/head There was a failure building this commit
myruns
2022-05-15 22:03:07 +02:00

13 lines
241 B
Plaintext

pipeline {
docker {
image 'ksero/ium:pytorch'
}
stages {
stage('Prediction') {
steps {
sh 'ls -la'
sh "python ./predictMlflow.py"
}
}
}
}