ium_444018/Jenkinsfile_registry

15 lines
209 B
Plaintext
Raw Normal View History

2022-05-16 01:58:32 +02:00
pipeline {
agent {
2022-05-16 02:24:09 +02:00
dockerfile {
additionalBuildArgs "-t docker_image"
}
2022-05-16 01:58:32 +02:00
}
stages {
stage('Script') {
steps {
sh 'python3 ./registry.py'
}
}
}
}