# Dockerfile.fast — Fast packaging of a pre-compiled local binary FROM alpine:3.19 # Add CA certificates and timezone data RUN apk --no-cache add ca-certificates tzdata WORKDIR /app # Copy the pre-compiled binary from the host ARG BINARY_PATH COPY ${BINARY_PATH} /app/poc-server # Set execution permissions RUN chmod +x /app/poc-server # Expose server ports EXPOSE 8080 ENTRYPOINT ["/app/poc-server"]