ium_444018/Jenkinsfile_registry
Szymon Parafiński 38e354c0c1
Some checks failed
s444018-training/pipeline/head There was a failure building this commit
s444018-evaluation/pipeline/head This commit looks good
test
2022-05-16 02:24:09 +02:00

15 lines
209 B
Plaintext

pipeline {
agent {
dockerfile {
additionalBuildArgs "-t docker_image"
}
}
stages {
stage('Script') {
steps {
sh 'python3 ./registry.py'
}
}
}
}