2
0

Dockerfile & Makefile argument name mismatch (#232)

Dockerfile expects the argument to be `SENTRY_IMAGE`. So, modifying Makefile to enable `make build`
This commit is contained in:
Ashok Bommisetti 2019-07-29 16:55:35 +02:00 committed by Burak Yigit Kaya
parent 13b510fc14
commit 263acda90b

View File

@ -6,7 +6,7 @@ NO_COLOR=\033[0m
build:
@printf "$(OK_COLOR)==>$(NO_COLOR) Building $(REPOSITORY):$(TAG)\n"
@docker build --pull --rm -t $(REPOSITORY):$(TAG) . --build-arg IMAGE=sentry:9.1
@docker build --pull --rm -t $(REPOSITORY):$(TAG) . --build-arg SENTRY_IMAGE=sentry:9.1
$(REPOSITORY)_$(TAG).tar: build
@printf "$(OK_COLOR)==>$(NO_COLOR) Saving $(REPOSITORY):$(TAG) > $@\n"