We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1efbb2a commit 524fdf5Copy full SHA for 524fdf5
.travis.yml
@@ -8,6 +8,7 @@ services:
8
env:
9
# HACK(bacongobbler): make travis tests work
10
- DEIS_REGISTRY=travis-ci/
11
+ - DOCKER_BUILD_FLAGS="--pull --no-cache"
12
install:
13
- make docker-build
14
script:
Makefile
@@ -22,7 +22,7 @@ all: docker-build docker-push
22
# For cases where we're building from local
23
# We also alter the RC file to set the image name.
24
docker-build:
25
- docker build --rm -t ${IMAGE} .
+ docker build ${DOCKER_BUILD_FLAGS} -t ${IMAGE} .
26
docker tag ${IMAGE} ${MUTABLE_IMAGE}
27
28
test: test-style test-unit test-functional
0 commit comments