country-geo-locations/Makefile

12 lines
231 B
Makefile

# Build project
.PHONY: build
build:
CGO_ENABLED=0 go build \
-o country-geo-locations \
main.go
# Build project docker container
.PHONY: build/docker
build/docker:
docker build -t git.ar21.de/yolokube/country-geo-locations .