We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35fe6ad commit cc60fa0Copy full SHA for cc60fa0
2 files changed
Jenkinsfile
@@ -84,7 +84,7 @@ node(linux) {
84
85
sh """
86
docker login -e="${quayEmail}" -u="${quayUsername}" -p="\${QUAY_PASSWORD}" quay.io
87
- docker build -t ${test_image} .
+ docker build \${DOCKER_BUILD_FLAGS} -t ${test_image} .
88
docker push ${test_image}
89
"""
90
Makefile
@@ -68,7 +68,7 @@ test: build-test-image
68
docker run --rm ${IMAGE} test
69
70
build-test-image:
71
- docker build -t ${IMAGE} .
+ docker build ${DOCKER_BUILD_FLAGS} -t ${IMAGE} .
72
73
push-test-image: build-test-image
74
docker push ${IMAGE}
0 commit comments