ium_444018/Jenkinsfile_registry

16 lines
227 B
Plaintext
Raw Normal View History

2022-05-16 01:58:32 +02:00
pipeline {
agent {
2022-05-16 02:27:09 +02:00
docker {
image 'docker_image'
args '-v /mlruns:/mlruns'
}
2022-05-16 01:58:32 +02:00
}
stages {
stage('Script') {
steps {
sh 'python3 ./registry.py'
}
}
}
}