2024-02-21 11:20:59 +01:00
|
|
|
# Use buildx for multi-architecture support
|
2024-08-14 19:34:59 +02:00
|
|
|
FROM --platform=${BUILDPLATFORM} golang:1.23 AS builder
|
2024-02-21 11:20:59 +01:00
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
# Copy go.mod and go.sum files to download dependencies
|
|
|
|
COPY go.mod go.sum ./
|
|
|
|
RUN go mod download
|
|
|
|
|
|
|
|
# Copy the source code into the container
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
# Build the application for the specified target architecture
|
2024-08-08 11:18:26 +02:00
|
|
|
# https://www.docker.com/blog/faster-multi-platform-builds-dockerfile-cross-compilation-guide/
|
2024-08-10 09:54:57 +02:00
|
|
|
# Declare TARGETOS and TARGETARCH in the local scope so they can be used in the build stage.
|
2024-08-08 11:18:26 +02:00
|
|
|
ARG TARGETOS TARGETARCH
|
2024-08-08 11:19:01 +02:00
|
|
|
RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -o opendtu-logger .
|
2024-02-21 11:20:59 +01:00
|
|
|
|
|
|
|
# Create a minimal runtime image
|
|
|
|
FROM --platform=${TARGETPLATFORM} scratch
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
# Copy the executable from the builder stage
|
|
|
|
COPY --from=builder /app/opendtu-logger /app/opendtu-logger
|
|
|
|
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
|
|
|
|
|
|
|
|
# Run the application
|
|
|
|
CMD ["./opendtu-logger"]
|