ium_444356/Jenkinsfile_registry

16 lines
231 B
Plaintext

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