From a172e0c459e1344918ee89d64c1532c60f4ba83c Mon Sep 17 00:00:00 2001 From: Tim Wundenberg Date: Tue, 17 Sep 2024 10:33:49 +0200 Subject: [PATCH] fix: dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index eadcb58..25268aa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ WORKDIR /app COPY . . RUN cargo install --path . -FROM debian:bullseye-slim@sha256:00558f781b91e90469812bad32002f311ab26ef241b4a1996f6600680ec82f5c +FROM debian:12.7@sha256:b8084b1a576c5504a031936e1132574f4ce1d6cc7130bbcc25a28f074539ae6b RUN apt-get update && apt-get -y install ca-certificates && rm -rf /var/lib/apt/lists/* COPY --from=builder /usr/local/cargo/bin/cloudflare-dynamic-dns /usr/local/bin/cloudflare-dynamic-dns CMD ["cloudflare-dynamic-dns"]