country-geo-locations/Dockerfile

26 lines
508 B
Docker
Raw Normal View History

2024-06-04 23:11:05 +02:00
FROM golang:1.22.4-bookworm AS build
2023-12-19 13:56:03 +01:00
# Create build workspace folder
WORKDIR /workspace
ADD . /workspace
# Install updates and build tools
RUN apt-get update --yes && \
apt-get install --yes build-essential
# Build the actual binary
RUN make build
# -- -- -- -- -- --
# Set up image to run the tool
FROM alpine
# Create main app folder to run from
WORKDIR /app
# Copy built binary from build image
COPY --from=build /workspace/country-geo-locations /app
2023-12-19 13:56:03 +01:00
ENTRYPOINT ["/app/country-geo-locations"]