country-geo-locations/Makefile

12 lines
229 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 \
main.go
# Build project docker container
.PHONY: build/docker
build/docker:
docker build -t registry.neuber.io/country-geo-locations .