ium_444417/lab8/Jenkinsfile.mlflow

16 lines
301 B
Plaintext
Raw Normal View History

2022-05-15 10:37:28 +02:00
pipeline {
agent {
docker {
image 'mikolajk/ium:latest'
args '-v /mlruns:/mlruns'
}
}
stages {
stage('Stage') {
steps {
sh 'cd lab8'
sh "python predictMlflow.py"
}
}
}
}