country-geo-locations/Makefile
Tom Neuber 192d54465f
All checks were successful
continuous-integration/drone/push Build is passing
Makefile & Dockerfile: update docker mirror & file name
2024-01-25 13:11:41 +01:00

11 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 .