From 1e288e166dbda6ceb5a6d4877972384114e470d7 Mon Sep 17 00:00:00 2001 From: Mike Henry Date: Thu, 7 Nov 2019 10:53:02 +0100 Subject: [PATCH] Force install/update --- ibmjava/update.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ibmjava/update.sh b/ibmjava/update.sh index 6f37bf6..43291d9 100755 --- a/ibmjava/update.sh +++ b/ibmjava/update.sh @@ -194,8 +194,8 @@ EOI print_ubi-min_pkg() { cat >> $1 <<'EOI' -RUN microdnf install openssl wget ca-certificates gzip tar \ - && microdnf update; microdnf clean all +RUN microdnf install -y openssl wget ca-certificates gzip tar \ + && microdnf update -y; microdnf clean all EOI } @@ -205,7 +205,7 @@ print_ubi_pkg() { cat >> $1 <<'EOI' RUN yum install -y wget openssl ca-certificates gzip tar \ - && yum update; yum clean all + && yum update -y; yum clean all EOI }