From b1f6903c5e45cfc7838d65a172f43349f989a303 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20=C5=A0trauch?= Date: Fri, 19 Nov 2021 23:55:22 +0100 Subject: [PATCH] Fix makefile --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4b4c305..c7fe4c8 100644 --- a/Makefile +++ b/Makefile @@ -7,6 +7,7 @@ all: build build: $(DOCKER) pull debian:buster $(DOCKER) build -t ${REPO}:dev . + $(DOCKER) tag ${REPO}:dev ${REPO}:$(VERSION) test: DOCKER=$(DOCKER) ./tests2.sh @@ -14,7 +15,7 @@ test: squashed: $(DOCKER) pull debian:buster $(DOCKER) build --squash -t ${REPO}:dev-squashed . + $(DOCKER) tag ${REPO}:dev-squashed ${REPO}:$(VERSION) push: squashed - $(DOCKER) tag ${REPO}:dev-squashed ${REPO}:$(VERSION) $(DOCKER) push ${REPO}:$(VERSION)