From 263acda90b4bf3368066b07240eb03d11500c509 Mon Sep 17 00:00:00 2001 From: Ashok Bommisetti Date: Mon, 29 Jul 2019 16:55:35 +0200 Subject: [PATCH] Dockerfile & Makefile argument name mismatch (#232) Dockerfile expects the argument to be `SENTRY_IMAGE`. So, modifying Makefile to enable `make build` --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ac75682..0ab11e2 100644 --- a/Makefile +++ b/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"