12 lines
229 B
Makefile
12 lines
229 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 registry.neuber.io/country-geo-locations .
|