country-geo-locations/Makefile

12 lines
231 B
Makefile
Raw Normal View History

2023-12-19 13:56:03 +01:00
# Build project
.PHONY: build
build:
CGO_ENABLED=0 go build \
-o country-geo-locations \
2023-12-19 13:56:03 +01:00
main.go
# Build project docker container
.PHONY: build/docker
build/docker:
docker build -t git.ar21.de/yolokube/country-geo-locations .