Skip to content

Commit c746b8b

Browse files
authored
Add fix to 25.0.0.9 (#674)
* Add fixes to 25.0.0.9 Signed-off-by: Leo Christy Jesuraj <[email protected]> * Add fixes to 25.0.0.9 full Signed-off-by: Leo Christy Jesuraj <[email protected]> * Add findutils package to apply interim fix to 25.0.0.9 --------- Signed-off-by: Leo Christy Jesuraj <[email protected]>
1 parent 95b408b commit c746b8b

3 files changed

Lines changed: 4 additions & 1 deletion

File tree

releases/25.0.0.9/full/Dockerfile.ubi.openjdk8

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ RUN yum -y install shadow-utils wget unzip openssl \
2020
&& unzip -q /tmp/wlp.zip -d /opt/ol \
2121
&& mkdir -p /licenses \
2222
&& cp /opt/ol/wlp/LICENSE /licenses/ \
23+
&& find /tmp/wlpFixes -type f -name "*.jar" -print0 | sort -z | xargs -0 -n 1 -r -I {} java -jar {} --installLocation /opt/ol/wlp \
2324
&& adduser -u 1001 -r -g root -s /usr/sbin/nologin default \
2425
&& chown -R 1001:0 /opt/ol/wlp \
2526
&& chmod -R g+rw /opt/ol/wlp

releases/25.0.0.9/kernel-slim/Dockerfile.ubi.openjdk8

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ RUN yum -y install shadow-utils wget unzip openssl \
2020
&& unzip -q /tmp/wlp.zip -d /opt/ol \
2121
&& mkdir -p /licenses \
2222
&& cp /opt/ol/wlp/LICENSE /licenses/ \
23+
&& find /tmp/wlpFixes -type f -name "*.jar" -print0 | sort -z | xargs -0 -n 1 -r -I {} java -jar {} --installLocation /opt/ol/wlp \
2324
&& adduser -u 1001 -r -g root -s /usr/sbin/nologin default \
2425
&& chown -R 1001:0 /opt/ol/wlp \
2526
&& chmod -R g+rw /opt/ol/wlp

releases/25.0.0.9/kernel-slim/Dockerfile.ubi9-minimal.openjdk8

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,15 @@ ARG VERBOSE=false
1212
COPY resources/ /tmp/
1313

1414
# Install Open Liberty
15-
RUN microdnf -y install shadow-utils wget unzip openssl \
15+
RUN microdnf -y install shadow-utils wget unzip findutils openssl \
1616
&& if [ ! -f /tmp/wlp.zip ]; then wget -q $LIBERTY_DOWNLOAD_URL -U UA-Open-Liberty-Docker -O /tmp/wlp.zip; fi \
1717
&& echo "$LIBERTY_SHA /tmp/wlp.zip" > /tmp/wlp.zip.sha1 \
1818
&& sha1sum -c /tmp/wlp.zip.sha1 \
1919
&& chmod -R u+x /usr/bin \
2020
&& unzip -q /tmp/wlp.zip -d /opt/ol \
2121
&& mkdir -p /licenses \
2222
&& cp /opt/ol/wlp/LICENSE /licenses/ \
23+
&& find /tmp/wlpFixes -type f -name "*.jar" -print0 | sort -z | xargs -0 -n 1 -r -I {} java -jar {} --installLocation /opt/ol/wlp \
2324
&& adduser -u 1001 -r -g root -s /usr/sbin/nologin default \
2425
&& chown -R 1001:0 /opt/ol/wlp \
2526
&& chmod -R g+rw /opt/ol/wlp

0 commit comments

Comments
 (0)