fix(Makefile): Fix invalid reference format error (#218)
Required after #211. Fixes #216. Also fixes printing of `-e` after #215.
This commit is contained in:
parent
ce1d259834
commit
0fd0379859
8
Makefile
8
Makefile
@ -5,15 +5,15 @@ OK_COLOR=\033[32;01m
|
||||
NO_COLOR=\033[0m
|
||||
|
||||
build:
|
||||
@echo -e "$(OK_COLOR)==>$(NO_COLOR) Building $(REPOSITORY):$(TAG)"
|
||||
@docker build --pull --rm -t $(REPOSITORY):$(TAG) .
|
||||
@printf "$(OK_COLOR)==>$(NO_COLOR) Building $(REPOSITORY):$(TAG)"
|
||||
@docker build --pull --rm -t $(REPOSITORY):$(TAG) . --build-arg IMAGE=sentry:9.1
|
||||
|
||||
$(REPOSITORY)_$(TAG).tar: build
|
||||
@echo -e "$(OK_COLOR)==>$(NO_COLOR) Saving $(REPOSITORY):$(TAG) > $@"
|
||||
@printf "$(OK_COLOR)==>$(NO_COLOR) Saving $(REPOSITORY):$(TAG) > $@"
|
||||
@docker save $(REPOSITORY):$(TAG) > $@
|
||||
|
||||
push: build
|
||||
@echo -e "$(OK_COLOR)==>$(NO_COLOR) Pushing $(REPOSITORY):$(TAG)"
|
||||
@printf "$(OK_COLOR)==>$(NO_COLOR) Pushing $(REPOSITORY):$(TAG)"
|
||||
@docker push $(REPOSITORY):$(TAG)
|
||||
|
||||
all: build push
|
||||
|
Reference in New Issue
Block a user