From 2ce9a693f9d7cd47218c367bf61f43a4c757272c Mon Sep 17 00:00:00 2001 From: JuLi0n21 Date: Sun, 22 Sep 2024 13:21:54 +0200 Subject: [PATCH] added certificate updates --- proxy/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/proxy/Dockerfile b/proxy/Dockerfile index 38bde8b..d54d5b9 100644 --- a/proxy/Dockerfile +++ b/proxy/Dockerfile @@ -12,6 +12,9 @@ RUN CGO_ENABLED=1 GOOS=linux go build -o main . FROM ubuntu:latest 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/*.env .