ium_444018/Jenkinsfile_registry
Szymon Parafiński bcf2dd1c65
Some checks failed
s444018-training/pipeline/head There was a failure building this commit
s444018-evaluation/pipeline/head This commit looks good
python -> python3
2022-05-16 02:33:56 +02:00

16 lines
235 B
Plaintext

pipeline {
agent {
docker {
image 'docker_image'
args '-v /mlruns:/mlruns'
}
}
stages {
stage('Script') {
steps {
sh 'python3 ./registry.py'
}
}
}
}