From fd1a8e4fe99a33bb06044913605a74ed5b1b2f71 Mon Sep 17 00:00:00 2001 From: Lachlan Roberts Date: Mon, 25 Sep 2023 14:00:47 +1000 Subject: [PATCH] try building all images with no cache Signed-off-by: Lachlan Roberts --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e4aac5f3..a57b35d8 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ build: $(VERSIONS) define jetty-version $1: - docker build -t jetty:$(shell echo $1 | sed -e 's/\(.*\)\/\([^/]\+\)\/\([^/]\+\)/\2-\3-\1/g' | sed -e 's/\//-/g') $1 + docker build --no-cache -t jetty:$(shell echo $1 | sed -e 's/\(.*\)\/\([^/]\+\)\/\([^/]\+\)/\2-\3-\1/g' | sed -e 's/\//-/g') $1 endef $(foreach version,$(VERSIONS),$(eval $(call jetty-version,$(version))))