We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0e1ef9 commit 4f46069Copy full SHA for 4f46069
2 files changed
.travis.yml
@@ -10,6 +10,7 @@ services:
10
env:
11
# HACK(bacongobbler): make travis tests work
12
- DEIS_REGISTRY=travis-ci
13
+ - DOCKER_BUILD_FLAGS="--pull --no-cache"
14
install:
15
- make docker-build
16
script:
Makefile
@@ -35,7 +35,7 @@ build: check-docker
35
# For cases where we're building from local
36
# We also alter the RC file to set the image name.
37
docker-build: check-docker build
38
- docker build --rm -t ${IMAGE} rootfs
+ docker build ${DOCKER_BUILD_FLAGS} -t ${IMAGE} rootfs
39
docker tag ${IMAGE} ${MUTABLE_IMAGE}
40
41
build-binary:
0 commit comments