added certificate updates

This commit is contained in:
2024-09-22 13:21:54 +02:00
parent 3f22ba8d6f
commit 2ce9a693f9

View File

@@ -12,6 +12,9 @@ RUN CGO_ENABLED=1 GOOS=linux go build -o main .
FROM ubuntu:latest FROM ubuntu:latest
WORKDIR /app WORKDIR /app
RUN apt-get update && apt-get install -y ca-certificates
RUN update-ca-certificates
COPY --from=builder /app/main . COPY --from=builder /app/main .
COPY --from=builder /app/*.env . COPY --from=builder /app/*.env .