From 9ba30d10b7d87cfff3f55133f6ed5d57222cac69 Mon Sep 17 00:00:00 2001 From: maximo tejeda Date: Tue, 10 Dec 2024 18:40:43 -0400 Subject: [PATCH] ADD tz data to alpine now comes without it --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 270775e..82a234d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,4 +13,8 @@ RUN go build -o bin/ddns \ FROM alpine AS runner COPY --from=builder /app/bin/ddns /usr/bin/ +RUN apk --no-cache add --no-check-certificate ca-certificates \ + && update-ca-certificates +RUN apk add --no-cache tzdata + ENTRYPOINT /usr/bin/ddns