Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ibmjava/update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand All @@ -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
}
Expand Down