diff --git a/Dockerfile b/Dockerfile index 120857f..80b70f7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,6 +20,6 @@ FROM alpine WORKDIR /app # Copy built binary from build image -COPY --from=build /workspace/country_geo_locations /app +COPY --from=build /workspace/country-geo-locations /app -ENTRYPOINT ["/app/country_geo_locations"] +ENTRYPOINT ["/app/country-geo-locations"] diff --git a/Makefile b/Makefile index 8cb06ab..ce4b17e 100644 --- a/Makefile +++ b/Makefile @@ -2,10 +2,10 @@ .PHONY: build build: CGO_ENABLED=0 go build \ - -o country_geo_locations \ + -o country-geo-locations \ main.go # Build project docker container .PHONY: build/docker build/docker: - docker build -t registry.neuber.io/country-geo-locations . + docker build -t git.ar21.de/yolokube/country-geo-locations .