diff --git a/Dockerfile b/Dockerfile index cfba09f..0a98f68 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,8 @@ RUN go build -o /app/main . FROM ubuntu:24.04 +RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/* + COPY --from=build /app/main /app/main CMD ["/app/main"] \ No newline at end of file