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.
1 parent 75a0123 commit b2fc347Copy full SHA for b2fc347
.travis.yml
@@ -7,6 +7,8 @@ cache:
7
- vendor
8
services:
9
- docker
10
+env:
11
+ - DOCKER_BUILD_FLAGS="--pull --no-cache"
12
sudo: required
13
install:
14
- make bootstrap
Makefile
@@ -38,7 +38,7 @@ test-cover:
38
39
docker-build: build
40
# build the main image
41
- docker build --rm -t ${IMAGE} rootfs
+ docker build ${DOCKER_BUILD_FLAGS} -t ${IMAGE} rootfs
42
docker tag ${IMAGE} ${MUTABLE_IMAGE}
43
44
deploy: build docker-build docker-push
0 commit comments