From 29119b77dd8019dbf257664cc831c4ad25a40706 Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Wed, 27 Sep 2023 19:30:32 +0200 Subject: [PATCH] Install ca-certificates in Dockerfile Required so the container can access external sites --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index f1a5b56..2aced46 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,7 @@ ADD https://apt.puppet.com/puppet7-release-jammy.deb /puppet7-release-jammy.deb RUN apt install /puppet7-release-jammy.deb RUN apt update && apt install -y --no-install-recommends \ + ca-certificates \ cmake \ curl \ g++ \