From 3b418b10fc7f04193d3e4855550095ecc262a69b Mon Sep 17 00:00:00 2001 From: Mick Pollard <5791325-aussielunix_@users.noreply.gitlab.com> Date: Sat, 2 Dec 2023 11:47:12 +1100 Subject: [PATCH] test --- Containerfile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Containerfile b/Containerfile index 7278d36..84fa0b1 100644 --- a/Containerfile +++ b/Containerfile @@ -13,13 +13,16 @@ COPY extra-packages / # Install custom CA cert COPY aussielunix_Root_CA_168848365996868199089383065266162030969.crt /usr/local/share/ca-certificates/ +# update apt and install ca-certificates and dist-upgrade +RUN apt-get update -yq && \ + apt-get install ca-certificates && \ + apt-get -yq dist-upgrade + # Install Hashicorp apt signing key and apt repo COPY hashicorp-apt-keyring.gpg /etc/apt/keyrings/hashicorp-apt-keyring.gpg COPY hashicorp-apt-repo.list /etc/apt/sources.list.d/hashicorp.list -RUN apt-get install ca-certificates && \ - apt-get update -yq && \ - apt-get -yq dist-upgrade +RUN apt-get update -yq && \ RUN DEBIAN_FRONTEND=noninteractive apt-get -yq install \ libnss-myhostname ubuntu-minimal ubuntu-standard \