From afd76b3c89060c2fdb756561bd471868052c4727 Mon Sep 17 00:00:00 2001 From: "Crank, Daniel (dc6350)" Date: Fri, 1 Oct 2021 15:46:38 -0500 Subject: [PATCH] Add ca-certificates to images This patchset adds ca-certificates to the maas-rack-controller and maas-region-controller docker images, so the new ISRG Root X1 certificate will be included. Change-Id: Ia721b14ddc7d9e12d422f482a2e2d7f6f2c09b37 --- images/maas-rack-controller/Dockerfile | 1 + images/maas-region-controller/Dockerfile | 1 + 2 files changed, 2 insertions(+) diff --git a/images/maas-rack-controller/Dockerfile b/images/maas-rack-controller/Dockerfile index fd6054c..1024e04 100644 --- a/images/maas-rack-controller/Dockerfile +++ b/images/maas-rack-controller/Dockerfile @@ -30,6 +30,7 @@ RUN apt-get -qq update \ software-properties-common \ sudo \ systemd \ + ca-certificates \ # Don't start any optional services except for the few we need. # (specifically, don't start avahi-daemon, isc-dhcp-server, or libvirtd) && find /etc/systemd/system \ diff --git a/images/maas-region-controller/Dockerfile b/images/maas-region-controller/Dockerfile index 66ecc70..9b4aa4b 100644 --- a/images/maas-region-controller/Dockerfile +++ b/images/maas-region-controller/Dockerfile @@ -28,6 +28,7 @@ RUN apt-get -qq update \ software-properties-common \ sudo \ systemd \ + ca-certificates \ # Don't start any optional services except for the few we need. # (specifically, don't start avahi-daemon) && find /etc/systemd/system \