From d54c1a8d6c0315e96e57fac10622fbef747bc739 Mon Sep 17 00:00:00 2001 From: Burak Yigit Kaya Date: Thu, 9 Jan 2020 16:13:18 +0300 Subject: [PATCH] fix(Makefile): Remove the obsolete Makefile (#333) rip --- Makefile | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index 0ab11e2..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -REPOSITORY?=sentry-onpremise -TAG?=latest - -OK_COLOR=\033[32;01m -NO_COLOR=\033[0m - -build: - @printf "$(OK_COLOR)==>$(NO_COLOR) Building $(REPOSITORY):$(TAG)\n" - @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" - @docker save $(REPOSITORY):$(TAG) > $@ - -push: build - @printf "$(OK_COLOR)==>$(NO_COLOR) Pushing $(REPOSITORY):$(TAG)\n" - @docker push $(REPOSITORY):$(TAG) - -all: build push - -.PHONY: all build push