From 205942b49627a32d4c727ea772c07001ca344ed5 Mon Sep 17 00:00:00 2001 From: Tim Wundenberg Date: Fri, 23 Jun 2023 21:00:07 +0200 Subject: [PATCH] add required package --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a694584..c246d77 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,6 @@ COPY . . RUN cargo install --path . FROM debian:bullseye-slim -RUN apt-get update && rm -rf /var/lib/apt/lists/* +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"] \ No newline at end of file