From 259bc29e78b7bdb3173da004458a378e5e3fa8b4 Mon Sep 17 00:00:00 2001 From: Matt Robenolt Date: Mon, 6 May 2019 14:17:59 -0700 Subject: [PATCH] Add `--pull` into default `make build` target --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 57d2721..20a7521 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ NO_COLOR=\033[0m build: @echo "$(OK_COLOR)==>$(NO_COLOR) Building $(REPOSITORY):$(TAG)" - @docker build --rm -t $(REPOSITORY):$(TAG) . + @docker build --pull --rm -t $(REPOSITORY):$(TAG) . $(REPOSITORY)_$(TAG).tar: build @echo "$(OK_COLOR)==>$(NO_COLOR) Saving $(REPOSITORY):$(TAG) > $@"