POC-golang-postgres-docker/Makefile

13 lines
168 B
Makefile

export NAME=genitywebapp
build:
docker-compose build
run: build
docker-compose up
build-binary:
GOOS=linux GOARCH=amd64 go build
.PHONY: build-binary run build