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)