From 1c73dcad17915d4ae84d0377ebaebc85a0a2d358 Mon Sep 17 00:00:00 2001 From: Brandon Dunne Date: Wed, 3 Apr 2024 14:09:15 -0400 Subject: [PATCH] Update the base image first This will pull in any updates since the base image was built --- images/manageiq-base/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/images/manageiq-base/Dockerfile b/images/manageiq-base/Dockerfile index 94352d48e..a8b4ff4fb 100644 --- a/images/manageiq-base/Dockerfile +++ b/images/manageiq-base/Dockerfile @@ -40,6 +40,7 @@ COPY container-assets/prepare_local_yum_repo.sh /usr/local/bin COPY container-assets/clean_dnf_rpm /usr/local/bin/ RUN --mount=type=bind,from=rpms,source=/tmp/rpms,target=/tmp/rpms \ + dnf -y --disableplugin=subscription-manager --setopt=tsflags=nodocs update && \ ARCH=$(uname -m) && \ dnf config-manager --setopt=tsflags=nodocs --setopt=install_weak_deps=False --save && \ dnf -y --setopt=protected_packages= remove redhat-release && \