p1-logger/Dockerfile

27 lines
702 B
Docker
Raw Normal View History

2023-12-05 17:42:56 +01:00
# Use buildx for multi-architecture support
FROM --platform=${BUILDPLATFORM} golang:1.21 AS builder
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
2023-12-05 17:45:12 +01:00
RUN CGO_ENABLED=0 GOOS=linux GOARCH=${TARGETARCH} go build -o p1-logger .
2023-12-05 17:42:56 +01:00
# Create a minimal runtime image
FROM --platform=${TARGETPLATFORM} scratch
WORKDIR /app
# Copy the executable from the builder stage
2023-12-05 17:43:23 +01:00
COPY --from=builder /app/p1-logger /app/p1-logger
2023-12-05 17:42:56 +01:00
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
# Run the application
2023-12-05 17:43:23 +01:00
CMD ["./p1-logger"]