From 7e305e537d34ebdc1c5842192d113f259a758f51 Mon Sep 17 00:00:00 2001 From: Dom Storey Date: Mon, 13 Nov 2023 16:56:29 +0000 Subject: [PATCH] Update Dockerfile Need to accept microdnf upgrade --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index af27bab..1f2f6da 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ FROM registry.access.redhat.com/ubi8/ubi-minimal as builder -RUN microdnf update && microdnf install util-linux curl tar +RUN microdnf update -y && microdnf install util-linux curl tar ARG USERNAME ARG PASSWORD @@ -31,7 +31,7 @@ RUN mkdir -p /opt/ibm/ace-12 \ FROM registry.access.redhat.com/ubi8/ubi-minimal -RUN microdnf update && microdnf install findutils util-linux && microdnf clean all +RUN microdnf update -y && microdnf install findutils util-linux && microdnf clean all # Force reinstall tzdata package to get zoneinfo files RUN microdnf reinstall tzdata -y