ium_444354/Jenkinsfile_mlflow
Adrian Charkiewicz 16621c482b
All checks were successful
s444354-training/pipeline/head This commit looks good
s444354-evaluation/pipeline/head This commit looks good
new image: mlflow on dockerhub
2022-05-16 00:12:57 +02:00

13 lines
240 B
Plaintext

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