From d256ad02c53c470b9fb035fe4b29daeb686e9734 Mon Sep 17 00:00:00 2001 From: Peter van Dijk Date: Fri, 4 Feb 2022 12:40:20 +0100 Subject: [PATCH] dnsdist Docker image: install ca-certificates --- Dockerfile-dnsdist | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Dockerfile-dnsdist b/Dockerfile-dnsdist index 8406ada438..468c039759 100644 --- a/Dockerfile-dnsdist +++ b/Dockerfile-dnsdist @@ -68,8 +68,11 @@ FROM debian:10-slim # Reusable layer for base update - Should be cached from builder RUN apt-get update && apt-get -y dist-upgrade && apt-get clean -# Ensure python3 and jinja2 is present (for startup script), and python3-atomicwrites (for backend management), and tini (for signal management) -RUN apt-get install -y python3 python3-jinja2 python3-atomicwrites tini libcap2-bin && apt-get clean +# - python3 and jinja2 (for startup script) +# - python3-atomicwrites (for backend management) +# - tini (for signal management) +# - ca-certificates (for verifying downstream DoH/DoT certificates) +RUN apt-get install -y python3 python3-jinja2 python3-atomicwrites tini libcap2-bin ca-certificates && apt-get clean # Output from builder COPY --from=builder /build / -- 2.47.2