POC-golang-postgres-docker/Makefile

13 lines
168 B
Makefile
Raw Normal View History

2020-09-11 14:01:41 +00:00
export NAME=genitywebapp
2020-09-10 12:27:23 +00:00
build:
docker-compose build
2020-09-11 14:01:41 +00:00
run: build
docker-compose up
2020-09-10 12:27:23 +00:00
build-binary:
2020-09-11 09:13:09 +00:00
GOOS=linux GOARCH=amd64 go build
.PHONY: build-binary run build