diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Makefile b/Makefile deleted file mode 100644 index c9def5f..0000000 --- a/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -GO_BUILD_ENV := CGO_ENABLED=0 GOOS=linux GOARCH=amd64 -DOCKER_BUILD=$(shell pwd)/.docker_build -DOCKER_CMD=$(DOCKER_BUILD)/go-getting-started - -$(DOCKER_CMD): clean - mkdir -p $(DOCKER_BUILD) - $(GO_BUILD_ENV) go build -v -o $(DOCKER_CMD) . - -clean: - rm -rf $(DOCKER_BUILD) - -heroku: $(DOCKER_CMD) - heroku container:push web |