Merge pull request #308 from resin-io/build-pull

Always pull the base images when building
This commit is contained in:
Pablo Carranza Vélez 2016-10-08 17:30:39 -03:00 committed by GitHub
commit e1cd0de0d9

View File

@ -165,7 +165,7 @@ deploy: supervisor
nodesuper:
sed 's/%%ARCH%%/$(ARCH)/g' Dockerfile.build.template > Dockerfile.build.$(ARCH)
docker build \
docker build --pull \
$(DOCKER_HTTP_PROXY) \
$(DOCKER_HTTPS_PROXY) \
$(DOCKER_NO_PROXY) \
@ -176,7 +176,7 @@ nodesuper:
resin/node-supervisor-$(ARCH):$(SUPERVISOR_VERSION)
gosuper:
cd gosuper && docker build \
cd gosuper && docker build --pull \
$(DOCKER_HTTP_PROXY) \
$(DOCKER_HTTPS_PROXY) \
$(DOCKER_NO_PROXY) \