diff --git a/api/Dockerfile b/api/Dockerfile index e5cdf77..4ce6c92 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -8,6 +8,8 @@ RUN go build -o /bin/api ./main.go FROM debian:stable +RUN apt-get update && apt-get install -y ca-certificates +RUN update-ca-certificates WORKDIR /app COPY --from=builder /bin/api ./api COPY migrations ./migrations