We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7560196 + 0cf0deb commit 4e9a0e0Copy full SHA for 4e9a0e0
.travis.yml
@@ -5,6 +5,8 @@ branches:
5
sudo: required
6
services:
7
- docker
8
+env:
9
+ - DOCKER_BUILD_FLAGS="--pull --no-cache"
10
install:
11
- make docker-build
12
script:
Makefile
@@ -25,7 +25,7 @@ dev:
25
# For cases where we're building from local
26
# We also alter the RC file to set the image name.
27
docker-build:
28
- docker build --no-cache --rm -t ${IMAGE} rootfs
+ docker build ${DOCKER_BUILD_FLAGS} -t ${IMAGE} rootfs
29
docker tag ${IMAGE} ${MUTABLE_IMAGE}
30
31
test: test-style test-unit test-functional
0 commit comments