ium_444356/Jenkinsfile_registry
Maciej Czajka 0da61e1b99
All checks were successful
s444356-evaluation/pipeline/head This commit looks good
s444356-training/pipeline/head This commit looks good
update jenkinsfile_registry
2022-05-11 21:00:31 +02:00

16 lines
231 B
Plaintext

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