ium_444354/Jenkinsfile_mlflow
Adrian Charkiewicz 8da0707d5d
All checks were successful
s444354-training/pipeline/head This commit looks good
s444354-evaluation/pipeline/head This commit looks good
added -v mlruns folder
2022-05-16 00:34:41 +02:00

18 lines
326 B
Plaintext

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