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:
parent
13b510fc14
commit
263acda90b
2
Makefile
2
Makefile
@ -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"
|
||||
|
Reference in New Issue
Block a user