From ef801b7a6188829fc37bf5ef840056e878f18140 Mon Sep 17 00:00:00 2001 From: Jens L Date: Sun, 3 Dec 2023 23:47:45 +0200 Subject: [PATCH] root: include ca-certificates in container (#7763) Signed-off-by: Jens Langhammer --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6db21c26f..e715c0931 100644 --- a/Dockerfile +++ b/Dockerfile @@ -121,7 +121,7 @@ WORKDIR / # We cannot cache this layer otherwise we'll end up with a bigger image RUN apt-get update && \ # Required for runtime - apt-get install -y --no-install-recommends libpq5 openssl libxmlsec1-openssl libmaxminddb0 && \ + apt-get install -y --no-install-recommends libpq5 openssl libxmlsec1-openssl libmaxminddb0 ca-certificates && \ # Required for bootstrap & healtcheck apt-get install -y --no-install-recommends runit && \ apt-get clean && \