From c2ca6bfaf15e092d7cc1ffa1844a33de0f74811a Mon Sep 17 00:00:00 2001 From: Scott Frederick Date: Wed, 17 Jan 2024 17:34:55 -0600 Subject: [PATCH] Upgrade RedHat UBI to 9.3-1476 Closes gh-39228 --- .../conf/RedHat/{ubi9-9.2-722 => ubi9-9.3-1476}/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename spring-boot-tests/spring-boot-integration-tests/spring-boot-launch-script-tests/src/intTest/resources/conf/RedHat/{ubi9-9.2-722 => ubi9-9.3-1476}/Dockerfile (77%) diff --git a/spring-boot-tests/spring-boot-integration-tests/spring-boot-launch-script-tests/src/intTest/resources/conf/RedHat/ubi9-9.2-722/Dockerfile b/spring-boot-tests/spring-boot-integration-tests/spring-boot-launch-script-tests/src/intTest/resources/conf/RedHat/ubi9-9.3-1476/Dockerfile similarity index 77% rename from spring-boot-tests/spring-boot-integration-tests/spring-boot-launch-script-tests/src/intTest/resources/conf/RedHat/ubi9-9.2-722/Dockerfile rename to spring-boot-tests/spring-boot-integration-tests/spring-boot-launch-script-tests/src/intTest/resources/conf/RedHat/ubi9-9.3-1476/Dockerfile index 777f1a3cd93..8d18a1046bb 100644 --- a/spring-boot-tests/spring-boot-integration-tests/spring-boot-launch-script-tests/src/intTest/resources/conf/RedHat/ubi9-9.2-722/Dockerfile +++ b/spring-boot-tests/spring-boot-integration-tests/spring-boot-launch-script-tests/src/intTest/resources/conf/RedHat/ubi9-9.3-1476/Dockerfile @@ -1,10 +1,10 @@ -FROM redhat/ubi9:9.2-722 as prepare +FROM redhat/ubi9:9.3-1476 as prepare COPY downloads/* /opt/download/ RUN mkdir -p /opt/jdk && \ cd /opt/jdk && \ tar xzf /opt/download/* --strip-components=1 -FROM redhat/ubi9:9.2-722 +FROM redhat/ubi9:9.3-1476 COPY --from=prepare /opt/jdk /opt/jdk ENV JAVA_HOME /opt/jdk ENV PATH $JAVA_HOME/bin:$PATH