2025-01-22 18:31:59 +08:00
|
|
|
FROM golang:1.23.5-bookworm AS builder
|
2025-01-22 17:26:32 +08:00
|
|
|
ARG VERSION=prod
|
|
|
|
WORKDIR /app
|
2025-01-22 17:55:18 +08:00
|
|
|
COPY . .
|
|
|
|
RUN go mod tidy
|
2025-01-22 17:26:32 +08:00
|
|
|
RUN go build -o lucky
|
|
|
|
|
2025-01-22 19:00:31 +08:00
|
|
|
FROM debian:bookworm
|
2025-01-22 17:26:32 +08:00
|
|
|
WORKDIR /app
|
2025-01-22 19:14:29 +08:00
|
|
|
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
|
2025-01-22 17:26:32 +08:00
|
|
|
COPY --from=builder /app/lucky .
|
|
|
|
COPY --from=builder /app/plugin ./plugin
|
|
|
|
|
|
|
|
CMD ["./lucky"]
|