From 7da47d544985183aab3f0ba89c8ae73f8045aee1 Mon Sep 17 00:00:00 2001 From: Pablo Carranza Velez Date: Thu, 6 Oct 2016 21:15:11 +0000 Subject: [PATCH] Always pull the node and go image when building nodesuper and gosuper --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b8e796a7..28d23b6f 100644 --- a/Makefile +++ b/Makefile @@ -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) \