Rework complete project

This commit is contained in:
Tom Neuber 2023-12-19 13:56:03 +01:00
parent 868965a072
commit aebf7447c6
Signed by: tom
GPG key ID: F17EFE4272D89FF6
18 changed files with 2237 additions and 1980 deletions

11
Makefile Normal file
View file

@ -0,0 +1,11 @@
# 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 .