From 1eddebfa530400017012e31a34328fa6c6aafb19 Mon Sep 17 00:00:00 2001 From: Ashwin Das Date: Wed, 11 Dec 2024 09:43:22 -0500 Subject: [PATCH] deprecate 2015 IT cert --- Dockerfile.base | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile.base b/Dockerfile.base index 6444174..70bec2d 100644 --- a/Dockerfile.base +++ b/Dockerfile.base @@ -5,9 +5,7 @@ LABEL name="art-dash" \ # the build will need to run inside the firewall to access internal resources. # Install Red Hat IT Root CA and RCM repos -RUN curl -o /etc/pki/ca-trust/source/anchors/RH-IT-Root-CA.crt --fail -L \ - https://certs.corp.redhat.com/certs/2015-IT-Root-CA.pem \ - && curl -o /etc/pki/ca-trust/source/anchors/2022-IT-Root-CA.pem --fail -L \ +RUN curl -o /etc/pki/ca-trust/source/anchors/2022-IT-Root-CA.pem --fail -L \ https://certs.corp.redhat.com/certs/2022-IT-Root-CA.pem \ && update-ca-trust extract \ && curl -o /etc/yum.repos.d/rcm-tools-fedora.repo https://download.devel.redhat.com/rel-eng/RCMTOOLS/rcm-tools-fedora.repo \