ium_444354/Jenkinsfile_mlflow
Adrian Charkiewicz 435f6ed36e
All checks were successful
s444354-training/pipeline/head This commit looks good
s444354-evaluation/pipeline/head This commit looks good
missing agent keyname in registry_jenkinsfile file
2022-05-16 00:19:29 +02:00

15 lines
263 B
Plaintext

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