Update Semeru release versions #16858
Update Semeru release versions #16858tianon merged 1 commit intodocker-library:masterfrom jayasg12:master
Conversation
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
- TOMCAT_CHECKSUM="06e239d15ff7b72017c1d0752ddb1be4651374f7c1391631ec5619f4981cb2911267bc6b044d6c71a2a74738f70d433b96418951439848121f1d874862ddd3de"; \
- TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.85/bin/apache-tomcat-9.0.85.tar.gz"; \
+ TOMCAT_VER=`curl --silent https://dlcdn.apache.org/tomcat/tomcat-9/ | grep -o '[0-9]\+\.[0-9]\+\.[0-9]\+' | head -n 1` ;\
+ echo $TOMCAT_VER ;\
+ TOMCAT_CSUM_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v${TOMCAT_VER}/bin/apache-tomcat-${TOMCAT_VER}.tar.gz.sha512";\
+ TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v${TOMCAT_VER}/bin/apache-tomcat-${TOMCAT_VER}.tar.gz"; \
+ \
+ mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \
+ curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz.sha512 "${TOMCAT_CSUM_DWNLD_URL}"; \
+ curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \
+ TOMCAT_CHECKSUM=$(grep "tar.gz" "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz.sha512 | awk '{print $1}');\This "detect tomcat version and download checksum" code should be part of your templates instead -- scraping HTML to get the version number is going to be fairly unreliable so should happen outside the critical path of the build. If you're having issues with downloading Tomcat after the versions go out of support, perhaps consider something like: https://github.com/docker-library/tomcat/blob/065b183fdf5b4ab6f4450e73db6b52d4237f212a/10.1/jdk21/temurin-jammy/Dockerfile#L36-L60 Relatedly, perhaps there's been some progress on #10666 (comment) (ways to make this cleaner, such as publishing some pre-calculated cache along with the official downloads) ? |
|
I'm no expert but could we use the Tomcat image in a multi-stage build and pull out what we need from it? That would avoid d/ling from Apache and presumably we could just use some kind of :latest tag to always get something in support. |
|
@tianon in the meantime, are we blocking this PR on reverting to the previous method via ibmruntimes/semeru-containers#110? |
|
Downloading vs embedding the checksum for verifying downloaded artifacts is a blocker here, yes. You could copy the bits from the Tomcat image, yes, but you'd need to steer carefully through https://github.com/docker-library/faq#multi-stage-builds ("best" answer being fully reproducible output). |
This comment has been minimized.
This comment has been minimized.
|
Hi @tianon We have reverted back the Tomcat changes introduced for download and verify artifacts. We will explore ways to handle the tomcat versioning and try to commit for next release. Request to Merge this changes to unblock Semeru images publish. Thanks !! |
|
Doh, sorry, looks like I got distracted by the Tomcat change and we actually have the same problem for the Semeru downloads too 😭 - curl -LfsSo /tmp/openjdk.tar.gz ${BINARY_URL}; \
- echo "${ESUM} */tmp/openjdk.tar.gz" | sha256sum -c -; \
+ curl -LfsSo /tmp/openjdk.tar.gz.sha256.txt ${ESUM_URL}; \
+ curl -OLJSks ${BINARY_URL}; \
+ sha256sum -c /tmp/openjdk.tar.gz.sha256.txt; \
+ mv ibm-semeru-*tar.gz /tmp/openjdk.tar.gz; \ |
This comment has been minimized.
This comment has been minimized.
|
@tianon I have reverted cheksum changes made for openjdk. Kindly review and merge the PR. Thanks !! |
|
Looks like we missed some: 👀 diff --git a/ibm-semeru-runtimes_open-21-jdk-centos7/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-22-jdk-centos7/Dockerfile.open.releases.full
similarity index 69%
copy from ibm-semeru-runtimes_open-21-jdk-centos7/Dockerfile.open.releases.full
copy to ibm-semeru-runtimes_open-22-jdk-centos7/Dockerfile.open.releases.full
index c2f0ce6..875abd1 100644
--- a/ibm-semeru-runtimes_open-21-jdk-centos7/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-22-jdk-centos7/Dockerfile.open.releases.full
@@ -20,34 +20,36 @@ ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
...
- curl -LfsSo /tmp/openjdk.tar.gz ${BINARY_URL}; \
- echo "${ESUM} */tmp/openjdk.tar.gz" | sha256sum -c -; \
+ curl -LfsSo /tmp/openjdk.tar.gz.sha256.txt ${ESUM_URL}; \
+ curl -OLJSks ${BINARY_URL}; \
+ sha256sum -c /tmp/openjdk.tar.gz.sha256.txt; \
+ mv ibm-semeru-*tar.gz /tmp/openjdk.tar.gz; \diff --git a/ibm-semeru-runtimes_open-21-jdk-focal/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-22-jdk-focal/Dockerfile.open.releases.full
similarity index 70%
copy from ibm-semeru-runtimes_open-21-jdk-focal/Dockerfile.open.releases.full
copy to ibm-semeru-runtimes_open-22-jdk-focal/Dockerfile.open.releases.full
index 79f4413..186981f 100644
--- a/ibm-semeru-runtimes_open-21-jdk-focal/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-22-jdk-focal/Dockerfile.open.releases.full
@@ -23,34 +23,36 @@ RUN apt-get update \
...
- curl -LfsSo /tmp/openjdk.tar.gz ${BINARY_URL}; \
- echo "${ESUM} */tmp/openjdk.tar.gz" | sha256sum -c -; \
+ curl -LfsSo /tmp/openjdk.tar.gz.sha256.txt ${ESUM_URL}; \
+ curl -OLJSks ${BINARY_URL}; \
+ sha256sum -c /tmp/openjdk.tar.gz.sha256.txt; \
+ mv ibm-semeru-*tar.gz /tmp/openjdk.tar.gz; \diff --git a/ibm-semeru-runtimes_open-21-jdk-jammy/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-22-jdk-jammy/Dockerfile.open.releases.full
similarity index 70%
copy from ibm-semeru-runtimes_open-21-jdk-jammy/Dockerfile.open.releases.full
copy to ibm-semeru-runtimes_open-22-jdk-jammy/Dockerfile.open.releases.full
index 92e28a6..a4f506e 100644
--- a/ibm-semeru-runtimes_open-21-jdk-jammy/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-22-jdk-jammy/Dockerfile.open.releases.full
@@ -23,34 +23,36 @@ RUN apt-get update \
...
- curl -LfsSo /tmp/openjdk.tar.gz ${BINARY_URL}; \
- echo "${ESUM} */tmp/openjdk.tar.gz" | sha256sum -c -; \
+ curl -LfsSo /tmp/openjdk.tar.gz.sha256.txt ${ESUM_URL}; \
+ curl -OLJSks ${BINARY_URL}; \
+ sha256sum -c /tmp/openjdk.tar.gz.sha256.txt; \
+ mv ibm-semeru-*tar.gz /tmp/openjdk.tar.gz; \diff --git a/ibm-semeru-runtimes_open-21-jre-centos7/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-22-jre-centos7/Dockerfile.open.releases.full
similarity index 69%
copy from ibm-semeru-runtimes_open-21-jre-centos7/Dockerfile.open.releases.full
copy to ibm-semeru-runtimes_open-22-jre-centos7/Dockerfile.open.releases.full
index 27a0815..170f97a 100644
--- a/ibm-semeru-runtimes_open-21-jre-centos7/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-22-jre-centos7/Dockerfile.open.releases.full
@@ -20,34 +20,36 @@ ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
...
- curl -LfsSo /tmp/openjdk.tar.gz ${BINARY_URL}; \
- echo "${ESUM} */tmp/openjdk.tar.gz" | sha256sum -c -; \
+ curl -LfsSo /tmp/openjdk.tar.gz.sha256.txt ${ESUM_URL}; \
+ curl -OLJSks ${BINARY_URL}; \
+ sha256sum -c /tmp/openjdk.tar.gz.sha256.txt; \
+ mv ibm-semeru-*tar.gz /tmp/openjdk.tar.gz; \diff --git a/ibm-semeru-runtimes_open-21-jre-focal/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-22-jre-focal/Dockerfile.open.releases.full
similarity index 70%
copy from ibm-semeru-runtimes_open-21-jre-focal/Dockerfile.open.releases.full
copy to ibm-semeru-runtimes_open-22-jre-focal/Dockerfile.open.releases.full
index 11480f4..29c6be0 100644
--- a/ibm-semeru-runtimes_open-21-jre-focal/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-22-jre-focal/Dockerfile.open.releases.full
@@ -23,34 +23,36 @@ RUN apt-get update \
...
- curl -LfsSo /tmp/openjdk.tar.gz ${BINARY_URL}; \
- echo "${ESUM} */tmp/openjdk.tar.gz" | sha256sum -c -; \
+ curl -LfsSo /tmp/openjdk.tar.gz.sha256.txt ${ESUM_URL}; \
+ curl -OLJSks ${BINARY_URL}; \
+ sha256sum -c /tmp/openjdk.tar.gz.sha256.txt; \
+ mv ibm-semeru-*tar.gz /tmp/openjdk.tar.gz; \diff --git a/ibm-semeru-runtimes_open-21-jre-jammy/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-22-jre-jammy/Dockerfile.open.releases.full
similarity index 70%
copy from ibm-semeru-runtimes_open-21-jre-jammy/Dockerfile.open.releases.full
copy to ibm-semeru-runtimes_open-22-jre-jammy/Dockerfile.open.releases.full
index f63c002..9646d49 100644
--- a/ibm-semeru-runtimes_open-21-jre-jammy/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-22-jre-jammy/Dockerfile.open.releases.full
@@ -23,34 +23,36 @@ RUN apt-get update \
...
- curl -LfsSo /tmp/openjdk.tar.gz ${BINARY_URL}; \
- echo "${ESUM} */tmp/openjdk.tar.gz" | sha256sum -c -; \
+ curl -LfsSo /tmp/openjdk.tar.gz.sha256.txt ${ESUM_URL}; \
+ curl -OLJSks ${BINARY_URL}; \
+ sha256sum -c /tmp/openjdk.tar.gz.sha256.txt; \
+ mv ibm-semeru-*tar.gz /tmp/openjdk.tar.gz; \ |
|
Something I was thinking about while reviewing this: you might be able to combine some of the work of these images by specifying one variant of each version as the "donor" image and doing To be clear though, I don't suggest making that part of this PR -- let's get this out and then you can consider something like this afterwards (if it's something you want to explore). |
Signed-off-by: Jayashree Gopi <jayasg12@in.ibm.com>
Diff for e4264f3:diff --git a/_bashbrew-cat b/_bashbrew-cat
index 4881ccf..a43ec6f 100644
--- a/_bashbrew-cat
+++ b/_bashbrew-cat
@@ -1,155 +1,193 @@
-Maintainers: Surya Narkedimilli <snarkedi@in.ibm.com> (@narkedi)
+Maintainers: Jayashree Gopi <jayasg12@in.ibm.com> (@jayasg12)
GitRepo: https://github.com/ibmruntimes/semeru-containers.git
GitFetch: refs/heads/ibm
-Tags: open-8u402-b06-jdk-centos7, open-8-jdk-centos7
+Tags: open-8u412-b08-jdk-centos7, open-8-jdk-centos7
Architectures: amd64, arm64v8, ppc64le
-GitCommit: 6335f073e3ea258643215a0f490c2b2fea5cc90f
+GitCommit: a3c82d720a98bbdd4cb70f1db22eb27060af2164
Directory: 8/jdk/centos
File: Dockerfile.open.releases.full
-Tags: open-8u402-b06-jdk-focal, open-8-jdk-focal
+Tags: open-8u412-b08-jdk-focal, open-8-jdk-focal
Architectures: amd64, arm64v8, ppc64le, s390x
-GitCommit: 6335f073e3ea258643215a0f490c2b2fea5cc90f
+GitCommit: a3c82d720a98bbdd4cb70f1db22eb27060af2164
Directory: 8/jdk/ubuntu/focal
File: Dockerfile.open.releases.full
-Tags: open-8u402-b06-jdk-jammy, open-8-jdk-jammy
-SharedTags: open-8u402-b06-jdk, open-8-jdk
+Tags: open-8u412-b08-jdk-jammy, open-8-jdk-jammy
+SharedTags: open-8u412-b08-jdk, open-8-jdk
Architectures: amd64, arm64v8, ppc64le, s390x
-GitCommit: 6335f073e3ea258643215a0f490c2b2fea5cc90f
+GitCommit: a3c82d720a98bbdd4cb70f1db22eb27060af2164
Directory: 8/jdk/ubuntu/jammy
File: Dockerfile.open.releases.full
-Tags: open-8u402-b06-jre-centos7, open-8-jre-centos7
+Tags: open-8u412-b08-jre-centos7, open-8-jre-centos7
Architectures: amd64, arm64v8, ppc64le
-GitCommit: 6335f073e3ea258643215a0f490c2b2fea5cc90f
+GitCommit: a3c82d720a98bbdd4cb70f1db22eb27060af2164
Directory: 8/jre/centos
File: Dockerfile.open.releases.full
-Tags: open-8u402-b06-jre-focal, open-8-jre-focal
+Tags: open-8u412-b08-jre-focal, open-8-jre-focal
Architectures: amd64, arm64v8, ppc64le, s390x
-GitCommit: 6335f073e3ea258643215a0f490c2b2fea5cc90f
+GitCommit: a3c82d720a98bbdd4cb70f1db22eb27060af2164
Directory: 8/jre/ubuntu/focal
File: Dockerfile.open.releases.full
-Tags: open-8u402-b06-jre-jammy, open-8-jre-jammy
-SharedTags: open-8u402-b06-jre, open-8-jre
+Tags: open-8u412-b08-jre-jammy, open-8-jre-jammy
+SharedTags: open-8u412-b08-jre, open-8-jre
Architectures: amd64, arm64v8, ppc64le, s390x
-GitCommit: 6335f073e3ea258643215a0f490c2b2fea5cc90f
+GitCommit: a3c82d720a98bbdd4cb70f1db22eb27060af2164
Directory: 8/jre/ubuntu/jammy
File: Dockerfile.open.releases.full
-Tags: open-11.0.22_7-jdk-centos7, open-11-jdk-centos7
+Tags: open-11.0.23_9-jdk-centos7, open-11-jdk-centos7
Architectures: amd64, arm64v8, ppc64le
-GitCommit: 6335f073e3ea258643215a0f490c2b2fea5cc90f
+GitCommit: a3c82d720a98bbdd4cb70f1db22eb27060af2164
Directory: 11/jdk/centos
File: Dockerfile.open.releases.full
-Tags: open-11.0.22_7-jdk-focal, open-11-jdk-focal
+Tags: open-11.0.23_9-jdk-focal, open-11-jdk-focal
Architectures: amd64, arm64v8, ppc64le, s390x
-GitCommit: 6335f073e3ea258643215a0f490c2b2fea5cc90f
+GitCommit: a3c82d720a98bbdd4cb70f1db22eb27060af2164
Directory: 11/jdk/ubuntu/focal
File: Dockerfile.open.releases.full
-Tags: open-11.0.22_7-jdk-jammy, open-11-jdk-jammy
-SharedTags: open-11.0.22_7-jdk, open-11-jdk
+Tags: open-11.0.23_9-jdk-jammy, open-11-jdk-jammy
+SharedTags: open-11.0.23_9-jdk, open-11-jdk
Architectures: amd64, arm64v8, ppc64le, s390x
-GitCommit: 6335f073e3ea258643215a0f490c2b2fea5cc90f
+GitCommit: a3c82d720a98bbdd4cb70f1db22eb27060af2164
Directory: 11/jdk/ubuntu/jammy
File: Dockerfile.open.releases.full
-Tags: open-11.0.22_7-jre-centos7, open-11-jre-centos7
+Tags: open-11.0.23_9-jre-centos7, open-11-jre-centos7
Architectures: amd64, arm64v8, ppc64le
-GitCommit: 6335f073e3ea258643215a0f490c2b2fea5cc90f
+GitCommit: a3c82d720a98bbdd4cb70f1db22eb27060af2164
Directory: 11/jre/centos
File: Dockerfile.open.releases.full
-Tags: open-11.0.22_7-jre-focal, open-11-jre-focal
+Tags: open-11.0.23_9-jre-focal, open-11-jre-focal
Architectures: amd64, arm64v8, ppc64le, s390x
-GitCommit: 6335f073e3ea258643215a0f490c2b2fea5cc90f
+GitCommit: a3c82d720a98bbdd4cb70f1db22eb27060af2164
Directory: 11/jre/ubuntu/focal
File: Dockerfile.open.releases.full
-Tags: open-11.0.22_7-jre-jammy, open-11-jre-jammy
-SharedTags: open-11.0.22_7-jre, open-11-jre
+Tags: open-11.0.23_9-jre-jammy, open-11-jre-jammy
+SharedTags: open-11.0.23_9-jre, open-11-jre
Architectures: amd64, arm64v8, ppc64le, s390x
-GitCommit: 6335f073e3ea258643215a0f490c2b2fea5cc90f
+GitCommit: a3c82d720a98bbdd4cb70f1db22eb27060af2164
Directory: 11/jre/ubuntu/jammy
File: Dockerfile.open.releases.full
-Tags: open-17.0.10_7-jdk-centos7, open-17-jdk-centos7
+Tags: open-17.0.11_9-jdk-centos7, open-17-jdk-centos7
Architectures: amd64, arm64v8, ppc64le
-GitCommit: 6335f073e3ea258643215a0f490c2b2fea5cc90f
+GitCommit: a3c82d720a98bbdd4cb70f1db22eb27060af2164
Directory: 17/jdk/centos
File: Dockerfile.open.releases.full
-Tags: open-17.0.10_7-jdk-focal, open-17-jdk-focal
+Tags: open-17.0.11_9-jdk-focal, open-17-jdk-focal
Architectures: amd64, arm64v8, ppc64le, s390x
-GitCommit: 6335f073e3ea258643215a0f490c2b2fea5cc90f
+GitCommit: a3c82d720a98bbdd4cb70f1db22eb27060af2164
Directory: 17/jdk/ubuntu/focal
File: Dockerfile.open.releases.full
-Tags: open-17.0.10_7-jdk-jammy, open-17-jdk-jammy
-SharedTags: open-17.0.10_7-jdk, open-17-jdk
+Tags: open-17.0.11_9-jdk-jammy, open-17-jdk-jammy
+SharedTags: open-17.0.11_9-jdk, open-17-jdk
Architectures: amd64, arm64v8, ppc64le, s390x
-GitCommit: 6335f073e3ea258643215a0f490c2b2fea5cc90f
+GitCommit: a3c82d720a98bbdd4cb70f1db22eb27060af2164
Directory: 17/jdk/ubuntu/jammy
File: Dockerfile.open.releases.full
-Tags: open-17.0.10_7-jre-centos7, open-17-jre-centos7
+Tags: open-17.0.11_9-jre-centos7, open-17-jre-centos7
Architectures: amd64, arm64v8, ppc64le
-GitCommit: 6335f073e3ea258643215a0f490c2b2fea5cc90f
+GitCommit: a3c82d720a98bbdd4cb70f1db22eb27060af2164
Directory: 17/jre/centos
File: Dockerfile.open.releases.full
-Tags: open-17.0.10_7-jre-focal, open-17-jre-focal
+Tags: open-17.0.11_9-jre-focal, open-17-jre-focal
Architectures: amd64, arm64v8, ppc64le, s390x
-GitCommit: 6335f073e3ea258643215a0f490c2b2fea5cc90f
+GitCommit: a3c82d720a98bbdd4cb70f1db22eb27060af2164
Directory: 17/jre/ubuntu/focal
File: Dockerfile.open.releases.full
-Tags: open-17.0.10_7-jre-jammy, open-17-jre-jammy
-SharedTags: open-17.0.10_7-jre, open-17-jre
+Tags: open-17.0.11_9-jre-jammy, open-17-jre-jammy
+SharedTags: open-17.0.11_9-jre, open-17-jre
Architectures: amd64, arm64v8, ppc64le, s390x
-GitCommit: 6335f073e3ea258643215a0f490c2b2fea5cc90f
+GitCommit: a3c82d720a98bbdd4cb70f1db22eb27060af2164
Directory: 17/jre/ubuntu/jammy
File: Dockerfile.open.releases.full
-Tags: open-21.0.2_13-jdk-centos7, open-21-jdk-centos7
+Tags: open-21.0.3_9-jdk-centos7, open-21-jdk-centos7
Architectures: amd64, arm64v8, ppc64le
-GitCommit: 6335f073e3ea258643215a0f490c2b2fea5cc90f
+GitCommit: a3c82d720a98bbdd4cb70f1db22eb27060af2164
Directory: 21/jdk/centos
File: Dockerfile.open.releases.full
-Tags: open-21.0.2_13-jdk-focal, open-21-jdk-focal
+Tags: open-21.0.3_9-jdk-focal, open-21-jdk-focal
Architectures: amd64, arm64v8, ppc64le, s390x
-GitCommit: 6335f073e3ea258643215a0f490c2b2fea5cc90f
+GitCommit: a3c82d720a98bbdd4cb70f1db22eb27060af2164
Directory: 21/jdk/ubuntu/focal
File: Dockerfile.open.releases.full
-Tags: open-21.0.2_13-jdk-jammy, open-21-jdk-jammy
-SharedTags: open-21.0.2_13-jdk, open-21-jdk
+Tags: open-21.0.3_9-jdk-jammy, open-21-jdk-jammy
+SharedTags: open-21.0.3_9-jdk, open-21-jdk
Architectures: amd64, arm64v8, ppc64le, s390x
-GitCommit: 6335f073e3ea258643215a0f490c2b2fea5cc90f
+GitCommit: a3c82d720a98bbdd4cb70f1db22eb27060af2164
Directory: 21/jdk/ubuntu/jammy
File: Dockerfile.open.releases.full
-Tags: open-21.0.2_13-jre-centos7, open-21-jre-centos7
+Tags: open-21.0.3_9-jre-centos7, open-21-jre-centos7
Architectures: amd64, arm64v8, ppc64le
-GitCommit: 6335f073e3ea258643215a0f490c2b2fea5cc90f
+GitCommit: a3c82d720a98bbdd4cb70f1db22eb27060af2164
Directory: 21/jre/centos
File: Dockerfile.open.releases.full
-Tags: open-21.0.2_13-jre-focal, open-21-jre-focal
+Tags: open-21.0.3_9-jre-focal, open-21-jre-focal
Architectures: amd64, arm64v8, ppc64le, s390x
-GitCommit: 6335f073e3ea258643215a0f490c2b2fea5cc90f
+GitCommit: a3c82d720a98bbdd4cb70f1db22eb27060af2164
Directory: 21/jre/ubuntu/focal
File: Dockerfile.open.releases.full
-Tags: open-21.0.2_13-jre-jammy, open-21-jre-jammy
-SharedTags: open-21.0.2_13-jre, open-21-jre
+Tags: open-21.0.3_9-jre-jammy, open-21-jre-jammy
+SharedTags: open-21.0.3_9-jre, open-21-jre
Architectures: amd64, arm64v8, ppc64le, s390x
-GitCommit: 6335f073e3ea258643215a0f490c2b2fea5cc90f
+GitCommit: a3c82d720a98bbdd4cb70f1db22eb27060af2164
Directory: 21/jre/ubuntu/jammy
File: Dockerfile.open.releases.full
+
+Tags: open-22.0.1_8-jdk-centos7, open-22-jdk-centos7
+Architectures: amd64, arm64v8, ppc64le
+GitCommit: a3c82d720a98bbdd4cb70f1db22eb27060af2164
+Directory: 22/jdk/centos
+File: Dockerfile.open.releases.full
+
+Tags: open-22.0.1_8-jdk-focal, open-22-jdk-focal
+Architectures: amd64, arm64v8, ppc64le, s390x
+GitCommit: a3c82d720a98bbdd4cb70f1db22eb27060af2164
+Directory: 22/jdk/ubuntu/focal
+File: Dockerfile.open.releases.full
+
+Tags: open-22.0.1_8-jdk-jammy, open-22-jdk-jammy
+SharedTags: open-22.0.1_8-jdk, open-22-jdk
+Architectures: amd64, arm64v8, ppc64le, s390x
+GitCommit: a3c82d720a98bbdd4cb70f1db22eb27060af2164
+Directory: 22/jdk/ubuntu/jammy
+File: Dockerfile.open.releases.full
+
+Tags: open-22.0.1_8-jre-centos7, open-22-jre-centos7
+Architectures: amd64, arm64v8, ppc64le
+GitCommit: a3c82d720a98bbdd4cb70f1db22eb27060af2164
+Directory: 22/jre/centos
+File: Dockerfile.open.releases.full
+
+Tags: open-22.0.1_8-jre-focal, open-22-jre-focal
+Architectures: amd64, arm64v8, ppc64le, s390x
+GitCommit: a3c82d720a98bbdd4cb70f1db22eb27060af2164
+Directory: 22/jre/ubuntu/focal
+File: Dockerfile.open.releases.full
+
+Tags: open-22.0.1_8-jre-jammy, open-22-jre-jammy
+SharedTags: open-22.0.1_8-jre, open-22-jre
+Architectures: amd64, arm64v8, ppc64le, s390x
+GitCommit: a3c82d720a98bbdd4cb70f1db22eb27060af2164
+Directory: 22/jre/ubuntu/jammy
+File: Dockerfile.open.releases.full
diff --git a/_bashbrew-list b/_bashbrew-list
index 97d3cfe..f89a188 100644
--- a/_bashbrew-list
+++ b/_bashbrew-list
@@ -1,11 +1,11 @@
-ibm-semeru-runtimes:open-8u402-b06-jdk
-ibm-semeru-runtimes:open-8u402-b06-jdk-centos7
-ibm-semeru-runtimes:open-8u402-b06-jdk-focal
-ibm-semeru-runtimes:open-8u402-b06-jdk-jammy
-ibm-semeru-runtimes:open-8u402-b06-jre
-ibm-semeru-runtimes:open-8u402-b06-jre-centos7
-ibm-semeru-runtimes:open-8u402-b06-jre-focal
-ibm-semeru-runtimes:open-8u402-b06-jre-jammy
+ibm-semeru-runtimes:open-8u412-b08-jdk
+ibm-semeru-runtimes:open-8u412-b08-jdk-centos7
+ibm-semeru-runtimes:open-8u412-b08-jdk-focal
+ibm-semeru-runtimes:open-8u412-b08-jdk-jammy
+ibm-semeru-runtimes:open-8u412-b08-jre
+ibm-semeru-runtimes:open-8u412-b08-jre-centos7
+ibm-semeru-runtimes:open-8u412-b08-jre-focal
+ibm-semeru-runtimes:open-8u412-b08-jre-jammy
ibm-semeru-runtimes:open-8-jdk
ibm-semeru-runtimes:open-8-jdk-centos7
ibm-semeru-runtimes:open-8-jdk-focal
@@ -22,14 +22,14 @@ ibm-semeru-runtimes:open-11-jre
ibm-semeru-runtimes:open-11-jre-centos7
ibm-semeru-runtimes:open-11-jre-focal
ibm-semeru-runtimes:open-11-jre-jammy
-ibm-semeru-runtimes:open-11.0.22_7-jdk
-ibm-semeru-runtimes:open-11.0.22_7-jdk-centos7
-ibm-semeru-runtimes:open-11.0.22_7-jdk-focal
-ibm-semeru-runtimes:open-11.0.22_7-jdk-jammy
-ibm-semeru-runtimes:open-11.0.22_7-jre
-ibm-semeru-runtimes:open-11.0.22_7-jre-centos7
-ibm-semeru-runtimes:open-11.0.22_7-jre-focal
-ibm-semeru-runtimes:open-11.0.22_7-jre-jammy
+ibm-semeru-runtimes:open-11.0.23_9-jdk
+ibm-semeru-runtimes:open-11.0.23_9-jdk-centos7
+ibm-semeru-runtimes:open-11.0.23_9-jdk-focal
+ibm-semeru-runtimes:open-11.0.23_9-jdk-jammy
+ibm-semeru-runtimes:open-11.0.23_9-jre
+ibm-semeru-runtimes:open-11.0.23_9-jre-centos7
+ibm-semeru-runtimes:open-11.0.23_9-jre-focal
+ibm-semeru-runtimes:open-11.0.23_9-jre-jammy
ibm-semeru-runtimes:open-17-jdk
ibm-semeru-runtimes:open-17-jdk-centos7
ibm-semeru-runtimes:open-17-jdk-focal
@@ -38,14 +38,14 @@ ibm-semeru-runtimes:open-17-jre
ibm-semeru-runtimes:open-17-jre-centos7
ibm-semeru-runtimes:open-17-jre-focal
ibm-semeru-runtimes:open-17-jre-jammy
-ibm-semeru-runtimes:open-17.0.10_7-jdk
-ibm-semeru-runtimes:open-17.0.10_7-jdk-centos7
-ibm-semeru-runtimes:open-17.0.10_7-jdk-focal
-ibm-semeru-runtimes:open-17.0.10_7-jdk-jammy
-ibm-semeru-runtimes:open-17.0.10_7-jre
-ibm-semeru-runtimes:open-17.0.10_7-jre-centos7
-ibm-semeru-runtimes:open-17.0.10_7-jre-focal
-ibm-semeru-runtimes:open-17.0.10_7-jre-jammy
+ibm-semeru-runtimes:open-17.0.11_9-jdk
+ibm-semeru-runtimes:open-17.0.11_9-jdk-centos7
+ibm-semeru-runtimes:open-17.0.11_9-jdk-focal
+ibm-semeru-runtimes:open-17.0.11_9-jdk-jammy
+ibm-semeru-runtimes:open-17.0.11_9-jre
+ibm-semeru-runtimes:open-17.0.11_9-jre-centos7
+ibm-semeru-runtimes:open-17.0.11_9-jre-focal
+ibm-semeru-runtimes:open-17.0.11_9-jre-jammy
ibm-semeru-runtimes:open-21-jdk
ibm-semeru-runtimes:open-21-jdk-centos7
ibm-semeru-runtimes:open-21-jdk-focal
@@ -54,11 +54,27 @@ ibm-semeru-runtimes:open-21-jre
ibm-semeru-runtimes:open-21-jre-centos7
ibm-semeru-runtimes:open-21-jre-focal
ibm-semeru-runtimes:open-21-jre-jammy
-ibm-semeru-runtimes:open-21.0.2_13-jdk
-ibm-semeru-runtimes:open-21.0.2_13-jdk-centos7
-ibm-semeru-runtimes:open-21.0.2_13-jdk-focal
-ibm-semeru-runtimes:open-21.0.2_13-jdk-jammy
-ibm-semeru-runtimes:open-21.0.2_13-jre
-ibm-semeru-runtimes:open-21.0.2_13-jre-centos7
-ibm-semeru-runtimes:open-21.0.2_13-jre-focal
-ibm-semeru-runtimes:open-21.0.2_13-jre-jammy
+ibm-semeru-runtimes:open-21.0.3_9-jdk
+ibm-semeru-runtimes:open-21.0.3_9-jdk-centos7
+ibm-semeru-runtimes:open-21.0.3_9-jdk-focal
+ibm-semeru-runtimes:open-21.0.3_9-jdk-jammy
+ibm-semeru-runtimes:open-21.0.3_9-jre
+ibm-semeru-runtimes:open-21.0.3_9-jre-centos7
+ibm-semeru-runtimes:open-21.0.3_9-jre-focal
+ibm-semeru-runtimes:open-21.0.3_9-jre-jammy
+ibm-semeru-runtimes:open-22-jdk
+ibm-semeru-runtimes:open-22-jdk-centos7
+ibm-semeru-runtimes:open-22-jdk-focal
+ibm-semeru-runtimes:open-22-jdk-jammy
+ibm-semeru-runtimes:open-22-jre
+ibm-semeru-runtimes:open-22-jre-centos7
+ibm-semeru-runtimes:open-22-jre-focal
+ibm-semeru-runtimes:open-22-jre-jammy
+ibm-semeru-runtimes:open-22.0.1_8-jdk
+ibm-semeru-runtimes:open-22.0.1_8-jdk-centos7
+ibm-semeru-runtimes:open-22.0.1_8-jdk-focal
+ibm-semeru-runtimes:open-22.0.1_8-jdk-jammy
+ibm-semeru-runtimes:open-22.0.1_8-jre
+ibm-semeru-runtimes:open-22.0.1_8-jre-centos7
+ibm-semeru-runtimes:open-22.0.1_8-jre-focal
+ibm-semeru-runtimes:open-22.0.1_8-jre-jammy
diff --git a/ibm-semeru-runtimes_open-11-jdk-centos7/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-11-jdk-centos7/Dockerfile.open.releases.full
index f5617e6..f4381ac 100644
--- a/ibm-semeru-runtimes_open-11-jdk-centos7/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-11-jdk-centos7/Dockerfile.open.releases.full
@@ -20,26 +20,26 @@ ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
RUN yum install -y tzdata openssl curl ca-certificates fontconfig gzip tar \
&& yum clean all
-ENV JAVA_VERSION jdk-11.0.22+7_openj9-0.43.0
+ENV JAVA_VERSION jdk-11.0.23+9_openj9-0.44.0
RUN set -eux; \
ARCH="$(uname -m)"; \
case "${ARCH}" in \
aarch64|arm64) \
- ESUM='8462e525d9fb3ac0d1a3915f859175450da58958a1257cb37fe9cbde57c03eb8'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.22%2B7_openj9-0.43.0/ibm-semeru-open-jdk_aarch64_linux_11.0.22_7_openj9-0.43.0.tar.gz'; \
+ ESUM='23e280da1ce418692323f8aad94069ef34bae6566a98ffd349fc2cbb9fa285af'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.23%2B9_openj9-0.44.0/ibm-semeru-open-jdk_aarch64_linux_11.0.23_9_openj9-0.44.0.tar.gz'; \
;; \
amd64|x86_64) \
- ESUM='8407088440c18273f0b3ada109b2a0283045c7cad0390156dbb1b8ce620d5c12'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.22%2B7_openj9-0.43.0/ibm-semeru-open-jdk_x64_linux_11.0.22_7_openj9-0.43.0.tar.gz'; \
+ ESUM='033261124af247f944f820cad158df2b9db58945b4998750258c37d62fac99ff'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.23%2B9_openj9-0.44.0/ibm-semeru-open-jdk_x64_linux_11.0.23_9_openj9-0.44.0.tar.gz'; \
;; \
ppc64el|ppc64le) \
- ESUM='11f9712f4530cb85ab352f6a4f3301ff5987c6b8ce1cd0161fa4daf2a81a9594'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.22%2B7_openj9-0.43.0/ibm-semeru-open-jdk_ppc64le_linux_11.0.22_7_openj9-0.43.0.tar.gz'; \
+ ESUM='ceb327c697959cff964f078a875c8374ecdce5096bfff1da980f6b94cb5099ea'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.23%2B9_openj9-0.44.0/ibm-semeru-open-jdk_ppc64le_linux_11.0.23_9_openj9-0.44.0.tar.gz'; \
;; \
s390x) \
- ESUM='da343f13916b8a25ffb7778e178d1fba27d5a3b8652988cd15bc4c5054e598b9'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.22%2B7_openj9-0.43.0/ibm-semeru-open-jdk_s390x_linux_11.0.22_7_openj9-0.43.0.tar.gz'; \
+ ESUM='ab6989b16679e15da605b83cf4e49e4eb3435f565946375fc1534e26fa2411c4'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.23%2B9_openj9-0.44.0/ibm-semeru-open-jdk_s390x_linux_11.0.23_9_openj9-0.44.0.tar.gz'; \
;; \
*) \
echo "Unsupported arch: ${ARCH}"; \
@@ -68,8 +68,8 @@ RUN set -eux; \
SCC_SIZE="50m"; \
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \
- TOMCAT_CHECKSUM="06e239d15ff7b72017c1d0752ddb1be4651374f7c1391631ec5619f4981cb2911267bc6b044d6c71a2a74738f70d433b96418951439848121f1d874862ddd3de"; \
- TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.85/bin/apache-tomcat-9.0.85.tar.gz"; \
+ TOMCAT_CHECKSUM="aaa2851bdc7a2476b6793e95174965c1c861531f161d8a138e87f8532b1af4d4b3d92dd1ae890614a692e5f13fb2e6946a1ada888f21e9d7db1964616b4181f0"; \
+ TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.89/bin/apache-tomcat-9.0.89.tar.gz"; \
\
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \
diff --git a/ibm-semeru-runtimes_open-11-jdk-focal/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-11-jdk-focal/Dockerfile.open.releases.full
index 1f41cfd..0846b17 100644
--- a/ibm-semeru-runtimes_open-11-jdk-focal/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-11-jdk-focal/Dockerfile.open.releases.full
@@ -23,26 +23,26 @@ RUN apt-get update \
&& locale-gen en_US.UTF-8 \
&& rm -rf /var/lib/apt/lists/*
-ENV JAVA_VERSION jdk-11.0.22+7_openj9-0.43.0
+ENV JAVA_VERSION jdk-11.0.23+9_openj9-0.44.0
RUN set -eux; \
ARCH="$(dpkg --print-architecture)"; \
case "${ARCH}" in \
aarch64|arm64) \
- ESUM='8462e525d9fb3ac0d1a3915f859175450da58958a1257cb37fe9cbde57c03eb8'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.22%2B7_openj9-0.43.0/ibm-semeru-open-jdk_aarch64_linux_11.0.22_7_openj9-0.43.0.tar.gz'; \
+ ESUM='23e280da1ce418692323f8aad94069ef34bae6566a98ffd349fc2cbb9fa285af'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.23%2B9_openj9-0.44.0/ibm-semeru-open-jdk_aarch64_linux_11.0.23_9_openj9-0.44.0.tar.gz'; \
;; \
amd64|x86_64) \
- ESUM='8407088440c18273f0b3ada109b2a0283045c7cad0390156dbb1b8ce620d5c12'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.22%2B7_openj9-0.43.0/ibm-semeru-open-jdk_x64_linux_11.0.22_7_openj9-0.43.0.tar.gz'; \
+ ESUM='033261124af247f944f820cad158df2b9db58945b4998750258c37d62fac99ff'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.23%2B9_openj9-0.44.0/ibm-semeru-open-jdk_x64_linux_11.0.23_9_openj9-0.44.0.tar.gz'; \
;; \
ppc64el|ppc64le) \
- ESUM='11f9712f4530cb85ab352f6a4f3301ff5987c6b8ce1cd0161fa4daf2a81a9594'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.22%2B7_openj9-0.43.0/ibm-semeru-open-jdk_ppc64le_linux_11.0.22_7_openj9-0.43.0.tar.gz'; \
+ ESUM='ceb327c697959cff964f078a875c8374ecdce5096bfff1da980f6b94cb5099ea'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.23%2B9_openj9-0.44.0/ibm-semeru-open-jdk_ppc64le_linux_11.0.23_9_openj9-0.44.0.tar.gz'; \
;; \
s390x) \
- ESUM='da343f13916b8a25ffb7778e178d1fba27d5a3b8652988cd15bc4c5054e598b9'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.22%2B7_openj9-0.43.0/ibm-semeru-open-jdk_s390x_linux_11.0.22_7_openj9-0.43.0.tar.gz'; \
+ ESUM='ab6989b16679e15da605b83cf4e49e4eb3435f565946375fc1534e26fa2411c4'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.23%2B9_openj9-0.44.0/ibm-semeru-open-jdk_s390x_linux_11.0.23_9_openj9-0.44.0.tar.gz'; \
;; \
*) \
echo "Unsupported arch: ${ARCH}"; \
@@ -71,8 +71,8 @@ RUN set -eux; \
SCC_SIZE="50m"; \
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \
- TOMCAT_CHECKSUM="06e239d15ff7b72017c1d0752ddb1be4651374f7c1391631ec5619f4981cb2911267bc6b044d6c71a2a74738f70d433b96418951439848121f1d874862ddd3de"; \
- TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.85/bin/apache-tomcat-9.0.85.tar.gz"; \
+ TOMCAT_CHECKSUM="aaa2851bdc7a2476b6793e95174965c1c861531f161d8a138e87f8532b1af4d4b3d92dd1ae890614a692e5f13fb2e6946a1ada888f21e9d7db1964616b4181f0"; \
+ TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.89/bin/apache-tomcat-9.0.89.tar.gz"; \
\
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \
diff --git a/ibm-semeru-runtimes_open-11-jdk-jammy/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-11-jdk-jammy/Dockerfile.open.releases.full
index bbc41f0..dc6b583 100644
--- a/ibm-semeru-runtimes_open-11-jdk-jammy/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-11-jdk-jammy/Dockerfile.open.releases.full
@@ -23,26 +23,26 @@ RUN apt-get update \
&& locale-gen en_US.UTF-8 \
&& rm -rf /var/lib/apt/lists/*
-ENV JAVA_VERSION jdk-11.0.22+7_openj9-0.43.0
+ENV JAVA_VERSION jdk-11.0.23+9_openj9-0.44.0
RUN set -eux; \
ARCH="$(dpkg --print-architecture)"; \
case "${ARCH}" in \
aarch64|arm64) \
- ESUM='8462e525d9fb3ac0d1a3915f859175450da58958a1257cb37fe9cbde57c03eb8'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.22%2B7_openj9-0.43.0/ibm-semeru-open-jdk_aarch64_linux_11.0.22_7_openj9-0.43.0.tar.gz'; \
+ ESUM='23e280da1ce418692323f8aad94069ef34bae6566a98ffd349fc2cbb9fa285af'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.23%2B9_openj9-0.44.0/ibm-semeru-open-jdk_aarch64_linux_11.0.23_9_openj9-0.44.0.tar.gz'; \
;; \
amd64|x86_64) \
- ESUM='8407088440c18273f0b3ada109b2a0283045c7cad0390156dbb1b8ce620d5c12'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.22%2B7_openj9-0.43.0/ibm-semeru-open-jdk_x64_linux_11.0.22_7_openj9-0.43.0.tar.gz'; \
+ ESUM='033261124af247f944f820cad158df2b9db58945b4998750258c37d62fac99ff'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.23%2B9_openj9-0.44.0/ibm-semeru-open-jdk_x64_linux_11.0.23_9_openj9-0.44.0.tar.gz'; \
;; \
ppc64el|ppc64le) \
- ESUM='11f9712f4530cb85ab352f6a4f3301ff5987c6b8ce1cd0161fa4daf2a81a9594'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.22%2B7_openj9-0.43.0/ibm-semeru-open-jdk_ppc64le_linux_11.0.22_7_openj9-0.43.0.tar.gz'; \
+ ESUM='ceb327c697959cff964f078a875c8374ecdce5096bfff1da980f6b94cb5099ea'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.23%2B9_openj9-0.44.0/ibm-semeru-open-jdk_ppc64le_linux_11.0.23_9_openj9-0.44.0.tar.gz'; \
;; \
s390x) \
- ESUM='da343f13916b8a25ffb7778e178d1fba27d5a3b8652988cd15bc4c5054e598b9'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.22%2B7_openj9-0.43.0/ibm-semeru-open-jdk_s390x_linux_11.0.22_7_openj9-0.43.0.tar.gz'; \
+ ESUM='ab6989b16679e15da605b83cf4e49e4eb3435f565946375fc1534e26fa2411c4'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.23%2B9_openj9-0.44.0/ibm-semeru-open-jdk_s390x_linux_11.0.23_9_openj9-0.44.0.tar.gz'; \
;; \
*) \
echo "Unsupported arch: ${ARCH}"; \
@@ -71,8 +71,8 @@ RUN set -eux; \
SCC_SIZE="50m"; \
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \
- TOMCAT_CHECKSUM="06e239d15ff7b72017c1d0752ddb1be4651374f7c1391631ec5619f4981cb2911267bc6b044d6c71a2a74738f70d433b96418951439848121f1d874862ddd3de"; \
- TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.85/bin/apache-tomcat-9.0.85.tar.gz"; \
+ TOMCAT_CHECKSUM="aaa2851bdc7a2476b6793e95174965c1c861531f161d8a138e87f8532b1af4d4b3d92dd1ae890614a692e5f13fb2e6946a1ada888f21e9d7db1964616b4181f0"; \
+ TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.89/bin/apache-tomcat-9.0.89.tar.gz"; \
\
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \
diff --git a/ibm-semeru-runtimes_open-11-jre-centos7/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-11-jre-centos7/Dockerfile.open.releases.full
index cd6c8b0..c816eb1 100644
--- a/ibm-semeru-runtimes_open-11-jre-centos7/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-11-jre-centos7/Dockerfile.open.releases.full
@@ -20,26 +20,26 @@ ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
RUN yum install -y tzdata openssl curl ca-certificates fontconfig gzip tar \
&& yum clean all
-ENV JAVA_VERSION jdk-11.0.22+7_openj9-0.43.0
+ENV JAVA_VERSION jdk-11.0.23+9_openj9-0.44.0
RUN set -eux; \
ARCH="$(uname -m)"; \
case "${ARCH}" in \
aarch64|arm64) \
- ESUM='cf723eca95f805d5ba0dfc33aa798ccd9f2a1984d2dc72c0b2fed5df804e8edf'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.22%2B7_openj9-0.43.0/ibm-semeru-open-jre_aarch64_linux_11.0.22_7_openj9-0.43.0.tar.gz'; \
+ ESUM='8613dc2b6c403f48d2a8e25da92ab9f8a7b5dd63cb81d1917e4cb070ae371557'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.23%2B9_openj9-0.44.0/ibm-semeru-open-jre_aarch64_linux_11.0.23_9_openj9-0.44.0.tar.gz'; \
;; \
ppc64el|ppc64le) \
- ESUM='ce87335076c236d5b8c63eec878492403ccd4354403ab25b24a8434ba7c84e3d'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.22%2B7_openj9-0.43.0/ibm-semeru-open-jre_ppc64le_linux_11.0.22_7_openj9-0.43.0.tar.gz'; \
+ ESUM='e2c5dc88e0701b067cde828f0f1c1593d81393de656a077bbb0baf8e5fdc7f7e'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.23%2B9_openj9-0.44.0/ibm-semeru-open-jre_ppc64le_linux_11.0.23_9_openj9-0.44.0.tar.gz'; \
;; \
amd64|x86_64) \
- ESUM='c0677152632c8da8b840b9b4475046318b25dcb3e15096f5f7fd6a49952afd6a'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.22%2B7_openj9-0.43.0/ibm-semeru-open-jre_x64_linux_11.0.22_7_openj9-0.43.0.tar.gz'; \
+ ESUM='b9558416d6d773fce0d9b4d3f875fdfc5ffc1afd922570b0f7a6f7cbab7468ab'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.23%2B9_openj9-0.44.0/ibm-semeru-open-jre_x64_linux_11.0.23_9_openj9-0.44.0.tar.gz'; \
;; \
s390x) \
- ESUM='7976a5076e484c3de391b25d6b4b06ac2102e0b8ea20f08787bc25c49d456112'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.22%2B7_openj9-0.43.0/ibm-semeru-open-jre_s390x_linux_11.0.22_7_openj9-0.43.0.tar.gz'; \
+ ESUM='cd7bd3d5cd7bcb6f7884d55c73119e509fdb4fc5b0e88adfd7c5e6b3e549a3d5'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.23%2B9_openj9-0.44.0/ibm-semeru-open-jre_s390x_linux_11.0.23_9_openj9-0.44.0.tar.gz'; \
;; \
*) \
echo "Unsupported arch: ${ARCH}"; \
@@ -68,8 +68,8 @@ RUN set -eux; \
SCC_SIZE="50m"; \
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \
- TOMCAT_CHECKSUM="06e239d15ff7b72017c1d0752ddb1be4651374f7c1391631ec5619f4981cb2911267bc6b044d6c71a2a74738f70d433b96418951439848121f1d874862ddd3de"; \
- TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.85/bin/apache-tomcat-9.0.85.tar.gz"; \
+ TOMCAT_CHECKSUM="aaa2851bdc7a2476b6793e95174965c1c861531f161d8a138e87f8532b1af4d4b3d92dd1ae890614a692e5f13fb2e6946a1ada888f21e9d7db1964616b4181f0"; \
+ TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.89/bin/apache-tomcat-9.0.89.tar.gz"; \
\
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \
diff --git a/ibm-semeru-runtimes_open-11-jre-focal/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-11-jre-focal/Dockerfile.open.releases.full
index cec0c42..0f2e50f 100644
--- a/ibm-semeru-runtimes_open-11-jre-focal/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-11-jre-focal/Dockerfile.open.releases.full
@@ -23,26 +23,26 @@ RUN apt-get update \
&& locale-gen en_US.UTF-8 \
&& rm -rf /var/lib/apt/lists/*
-ENV JAVA_VERSION jdk-11.0.22+7_openj9-0.43.0
+ENV JAVA_VERSION jdk-11.0.23+9_openj9-0.44.0
RUN set -eux; \
ARCH="$(dpkg --print-architecture)"; \
case "${ARCH}" in \
aarch64|arm64) \
- ESUM='cf723eca95f805d5ba0dfc33aa798ccd9f2a1984d2dc72c0b2fed5df804e8edf'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.22%2B7_openj9-0.43.0/ibm-semeru-open-jre_aarch64_linux_11.0.22_7_openj9-0.43.0.tar.gz'; \
+ ESUM='8613dc2b6c403f48d2a8e25da92ab9f8a7b5dd63cb81d1917e4cb070ae371557'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.23%2B9_openj9-0.44.0/ibm-semeru-open-jre_aarch64_linux_11.0.23_9_openj9-0.44.0.tar.gz'; \
;; \
ppc64el|ppc64le) \
- ESUM='ce87335076c236d5b8c63eec878492403ccd4354403ab25b24a8434ba7c84e3d'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.22%2B7_openj9-0.43.0/ibm-semeru-open-jre_ppc64le_linux_11.0.22_7_openj9-0.43.0.tar.gz'; \
+ ESUM='e2c5dc88e0701b067cde828f0f1c1593d81393de656a077bbb0baf8e5fdc7f7e'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.23%2B9_openj9-0.44.0/ibm-semeru-open-jre_ppc64le_linux_11.0.23_9_openj9-0.44.0.tar.gz'; \
;; \
amd64|x86_64) \
- ESUM='c0677152632c8da8b840b9b4475046318b25dcb3e15096f5f7fd6a49952afd6a'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.22%2B7_openj9-0.43.0/ibm-semeru-open-jre_x64_linux_11.0.22_7_openj9-0.43.0.tar.gz'; \
+ ESUM='b9558416d6d773fce0d9b4d3f875fdfc5ffc1afd922570b0f7a6f7cbab7468ab'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.23%2B9_openj9-0.44.0/ibm-semeru-open-jre_x64_linux_11.0.23_9_openj9-0.44.0.tar.gz'; \
;; \
s390x) \
- ESUM='7976a5076e484c3de391b25d6b4b06ac2102e0b8ea20f08787bc25c49d456112'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.22%2B7_openj9-0.43.0/ibm-semeru-open-jre_s390x_linux_11.0.22_7_openj9-0.43.0.tar.gz'; \
+ ESUM='cd7bd3d5cd7bcb6f7884d55c73119e509fdb4fc5b0e88adfd7c5e6b3e549a3d5'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.23%2B9_openj9-0.44.0/ibm-semeru-open-jre_s390x_linux_11.0.23_9_openj9-0.44.0.tar.gz'; \
;; \
*) \
echo "Unsupported arch: ${ARCH}"; \
@@ -71,8 +71,8 @@ RUN set -eux; \
SCC_SIZE="50m"; \
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \
- TOMCAT_CHECKSUM="06e239d15ff7b72017c1d0752ddb1be4651374f7c1391631ec5619f4981cb2911267bc6b044d6c71a2a74738f70d433b96418951439848121f1d874862ddd3de"; \
- TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.85/bin/apache-tomcat-9.0.85.tar.gz"; \
+ TOMCAT_CHECKSUM="aaa2851bdc7a2476b6793e95174965c1c861531f161d8a138e87f8532b1af4d4b3d92dd1ae890614a692e5f13fb2e6946a1ada888f21e9d7db1964616b4181f0"; \
+ TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.89/bin/apache-tomcat-9.0.89.tar.gz"; \
\
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \
diff --git a/ibm-semeru-runtimes_open-11-jre-jammy/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-11-jre-jammy/Dockerfile.open.releases.full
index f0e76c8..e34300b 100644
--- a/ibm-semeru-runtimes_open-11-jre-jammy/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-11-jre-jammy/Dockerfile.open.releases.full
@@ -23,26 +23,26 @@ RUN apt-get update \
&& locale-gen en_US.UTF-8 \
&& rm -rf /var/lib/apt/lists/*
-ENV JAVA_VERSION jdk-11.0.22+7_openj9-0.43.0
+ENV JAVA_VERSION jdk-11.0.23+9_openj9-0.44.0
RUN set -eux; \
ARCH="$(dpkg --print-architecture)"; \
case "${ARCH}" in \
aarch64|arm64) \
- ESUM='cf723eca95f805d5ba0dfc33aa798ccd9f2a1984d2dc72c0b2fed5df804e8edf'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.22%2B7_openj9-0.43.0/ibm-semeru-open-jre_aarch64_linux_11.0.22_7_openj9-0.43.0.tar.gz'; \
+ ESUM='8613dc2b6c403f48d2a8e25da92ab9f8a7b5dd63cb81d1917e4cb070ae371557'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.23%2B9_openj9-0.44.0/ibm-semeru-open-jre_aarch64_linux_11.0.23_9_openj9-0.44.0.tar.gz'; \
;; \
ppc64el|ppc64le) \
- ESUM='ce87335076c236d5b8c63eec878492403ccd4354403ab25b24a8434ba7c84e3d'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.22%2B7_openj9-0.43.0/ibm-semeru-open-jre_ppc64le_linux_11.0.22_7_openj9-0.43.0.tar.gz'; \
+ ESUM='e2c5dc88e0701b067cde828f0f1c1593d81393de656a077bbb0baf8e5fdc7f7e'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.23%2B9_openj9-0.44.0/ibm-semeru-open-jre_ppc64le_linux_11.0.23_9_openj9-0.44.0.tar.gz'; \
;; \
amd64|x86_64) \
- ESUM='c0677152632c8da8b840b9b4475046318b25dcb3e15096f5f7fd6a49952afd6a'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.22%2B7_openj9-0.43.0/ibm-semeru-open-jre_x64_linux_11.0.22_7_openj9-0.43.0.tar.gz'; \
+ ESUM='b9558416d6d773fce0d9b4d3f875fdfc5ffc1afd922570b0f7a6f7cbab7468ab'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.23%2B9_openj9-0.44.0/ibm-semeru-open-jre_x64_linux_11.0.23_9_openj9-0.44.0.tar.gz'; \
;; \
s390x) \
- ESUM='7976a5076e484c3de391b25d6b4b06ac2102e0b8ea20f08787bc25c49d456112'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.22%2B7_openj9-0.43.0/ibm-semeru-open-jre_s390x_linux_11.0.22_7_openj9-0.43.0.tar.gz'; \
+ ESUM='cd7bd3d5cd7bcb6f7884d55c73119e509fdb4fc5b0e88adfd7c5e6b3e549a3d5'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.23%2B9_openj9-0.44.0/ibm-semeru-open-jre_s390x_linux_11.0.23_9_openj9-0.44.0.tar.gz'; \
;; \
*) \
echo "Unsupported arch: ${ARCH}"; \
@@ -71,8 +71,8 @@ RUN set -eux; \
SCC_SIZE="50m"; \
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \
- TOMCAT_CHECKSUM="06e239d15ff7b72017c1d0752ddb1be4651374f7c1391631ec5619f4981cb2911267bc6b044d6c71a2a74738f70d433b96418951439848121f1d874862ddd3de"; \
- TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.85/bin/apache-tomcat-9.0.85.tar.gz"; \
+ TOMCAT_CHECKSUM="aaa2851bdc7a2476b6793e95174965c1c861531f161d8a138e87f8532b1af4d4b3d92dd1ae890614a692e5f13fb2e6946a1ada888f21e9d7db1964616b4181f0"; \
+ TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.89/bin/apache-tomcat-9.0.89.tar.gz"; \
\
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \
diff --git a/ibm-semeru-runtimes_open-17-jdk-centos7/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-17-jdk-centos7/Dockerfile.open.releases.full
index d18e0ad..fbe5ed1 100644
--- a/ibm-semeru-runtimes_open-17-jdk-centos7/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-17-jdk-centos7/Dockerfile.open.releases.full
@@ -20,26 +20,26 @@ ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
RUN yum install -y tzdata openssl curl ca-certificates fontconfig gzip tar \
&& yum clean all
-ENV JAVA_VERSION jdk-17.0.10+7_openj9-0.43.0
+ENV JAVA_VERSION jdk-17.0.11+9_openj9-0.44.0
RUN set -eux; \
ARCH="$(uname -m)"; \
case "${ARCH}" in \
aarch64|arm64) \
- ESUM='408a17ca19c74d29d60d1659e7b14bb81bb44d7f9ca992d1fd6bec96de7d9aa7'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.10%2B7_openj9-0.43.0/ibm-semeru-open-jdk_aarch64_linux_17.0.10_7_openj9-0.43.0.tar.gz'; \
+ ESUM='e33b5825b93b75b274c7fa3be33539683a25d76b7bbac51c6b24b66aee621222'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.11%2B9_openj9-0.44.0/ibm-semeru-open-jdk_aarch64_linux_17.0.11_9_openj9-0.44.0.tar.gz'; \
;; \
amd64|x86_64) \
- ESUM='be6f417cfe63a6a38ec5d02d5a19852ccdd9615e345136ed6b1ba09476b14c8e'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.10%2B7_openj9-0.43.0/ibm-semeru-open-jdk_x64_linux_17.0.10_7_openj9-0.43.0.tar.gz'; \
+ ESUM='61bf38e9005c286d55cc403eac3061bf9ebcb54af2f0475cde8261efe4effbec'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.11%2B9_openj9-0.44.0/ibm-semeru-open-jdk_x64_linux_17.0.11_9_openj9-0.44.0.tar.gz'; \
;; \
ppc64el|ppc64le) \
- ESUM='2f61775ba75812c6779659ab3108dc8a5d93664cb2619eaa1224fad77bd54d59'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.10%2B7_openj9-0.43.0/ibm-semeru-open-jdk_ppc64le_linux_17.0.10_7_openj9-0.43.0.tar.gz'; \
+ ESUM='af07d5b5d8a980826a1edd8954b868361709c1a11ef3402b28fa246c55c4e415'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.11%2B9_openj9-0.44.0/ibm-semeru-open-jdk_ppc64le_linux_17.0.11_9_openj9-0.44.0.tar.gz'; \
;; \
s390x) \
- ESUM='0e4217bb3ce00586943cfcbf3eb9bc8dcb0e2ab24e5426f754fd576a380fb3a5'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.10%2B7_openj9-0.43.0/ibm-semeru-open-jdk_s390x_linux_17.0.10_7_openj9-0.43.0.tar.gz'; \
+ ESUM='eb2ade1453801b330a06abb32e4ecac13ccc7c03029fa5bbf9604b9e1a5c9a5c'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.11%2B9_openj9-0.44.0/ibm-semeru-open-jdk_s390x_linux_17.0.11_9_openj9-0.44.0.tar.gz'; \
;;\
*) \
echo "Unsupported arch: ${ARCH}"; \
@@ -68,8 +68,8 @@ RUN set -eux; \
SCC_SIZE="50m"; \
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \
- TOMCAT_CHECKSUM="06e239d15ff7b72017c1d0752ddb1be4651374f7c1391631ec5619f4981cb2911267bc6b044d6c71a2a74738f70d433b96418951439848121f1d874862ddd3de"; \
- TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.85/bin/apache-tomcat-9.0.85.tar.gz"; \
+ TOMCAT_CHECKSUM="aaa2851bdc7a2476b6793e95174965c1c861531f161d8a138e87f8532b1af4d4b3d92dd1ae890614a692e5f13fb2e6946a1ada888f21e9d7db1964616b4181f0"; \
+ TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.89/bin/apache-tomcat-9.0.89.tar.gz"; \
\
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \
diff --git a/ibm-semeru-runtimes_open-17-jdk-focal/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-17-jdk-focal/Dockerfile.open.releases.full
index 7c24a41..423ccbf 100644
--- a/ibm-semeru-runtimes_open-17-jdk-focal/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-17-jdk-focal/Dockerfile.open.releases.full
@@ -23,26 +23,26 @@ RUN apt-get update \
&& locale-gen en_US.UTF-8 \
&& rm -rf /var/lib/apt/lists/*
-ENV JAVA_VERSION jdk-17.0.10+7_openj9-0.43.0
+ENV JAVA_VERSION jdk-17.0.11+9_openj9-0.44.0
RUN set -eux; \
ARCH="$(dpkg --print-architecture)"; \
case "${ARCH}" in \
aarch64|arm64) \
- ESUM='408a17ca19c74d29d60d1659e7b14bb81bb44d7f9ca992d1fd6bec96de7d9aa7'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.10%2B7_openj9-0.43.0/ibm-semeru-open-jdk_aarch64_linux_17.0.10_7_openj9-0.43.0.tar.gz'; \
+ ESUM='e33b5825b93b75b274c7fa3be33539683a25d76b7bbac51c6b24b66aee621222'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.11%2B9_openj9-0.44.0/ibm-semeru-open-jdk_aarch64_linux_17.0.11_9_openj9-0.44.0.tar.gz'; \
;; \
amd64|x86_64) \
- ESUM='be6f417cfe63a6a38ec5d02d5a19852ccdd9615e345136ed6b1ba09476b14c8e'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.10%2B7_openj9-0.43.0/ibm-semeru-open-jdk_x64_linux_17.0.10_7_openj9-0.43.0.tar.gz'; \
+ ESUM='61bf38e9005c286d55cc403eac3061bf9ebcb54af2f0475cde8261efe4effbec'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.11%2B9_openj9-0.44.0/ibm-semeru-open-jdk_x64_linux_17.0.11_9_openj9-0.44.0.tar.gz'; \
;; \
ppc64el|ppc64le) \
- ESUM='2f61775ba75812c6779659ab3108dc8a5d93664cb2619eaa1224fad77bd54d59'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.10%2B7_openj9-0.43.0/ibm-semeru-open-jdk_ppc64le_linux_17.0.10_7_openj9-0.43.0.tar.gz'; \
+ ESUM='af07d5b5d8a980826a1edd8954b868361709c1a11ef3402b28fa246c55c4e415'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.11%2B9_openj9-0.44.0/ibm-semeru-open-jdk_ppc64le_linux_17.0.11_9_openj9-0.44.0.tar.gz'; \
;; \
s390x) \
- ESUM='0e4217bb3ce00586943cfcbf3eb9bc8dcb0e2ab24e5426f754fd576a380fb3a5'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.10%2B7_openj9-0.43.0/ibm-semeru-open-jdk_s390x_linux_17.0.10_7_openj9-0.43.0.tar.gz'; \
+ ESUM='eb2ade1453801b330a06abb32e4ecac13ccc7c03029fa5bbf9604b9e1a5c9a5c'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.11%2B9_openj9-0.44.0/ibm-semeru-open-jdk_s390x_linux_17.0.11_9_openj9-0.44.0.tar.gz'; \
;;\
*) \
echo "Unsupported arch: ${ARCH}"; \
@@ -71,8 +71,8 @@ RUN set -eux; \
SCC_SIZE="50m"; \
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \
- TOMCAT_CHECKSUM="06e239d15ff7b72017c1d0752ddb1be4651374f7c1391631ec5619f4981cb2911267bc6b044d6c71a2a74738f70d433b96418951439848121f1d874862ddd3de"; \
- TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.85/bin/apache-tomcat-9.0.85.tar.gz"; \
+ TOMCAT_CHECKSUM="aaa2851bdc7a2476b6793e95174965c1c861531f161d8a138e87f8532b1af4d4b3d92dd1ae890614a692e5f13fb2e6946a1ada888f21e9d7db1964616b4181f0"; \
+ TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.89/bin/apache-tomcat-9.0.89.tar.gz"; \
\
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \
diff --git a/ibm-semeru-runtimes_open-17-jdk-jammy/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-17-jdk-jammy/Dockerfile.open.releases.full
index dab7bed..05a3336 100644
--- a/ibm-semeru-runtimes_open-17-jdk-jammy/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-17-jdk-jammy/Dockerfile.open.releases.full
@@ -23,26 +23,26 @@ RUN apt-get update \
&& locale-gen en_US.UTF-8 \
&& rm -rf /var/lib/apt/lists/*
-ENV JAVA_VERSION jdk-17.0.10+7_openj9-0.43.0
+ENV JAVA_VERSION jdk-17.0.11+9_openj9-0.44.0
RUN set -eux; \
ARCH="$(dpkg --print-architecture)"; \
case "${ARCH}" in \
aarch64|arm64) \
- ESUM='408a17ca19c74d29d60d1659e7b14bb81bb44d7f9ca992d1fd6bec96de7d9aa7'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.10%2B7_openj9-0.43.0/ibm-semeru-open-jdk_aarch64_linux_17.0.10_7_openj9-0.43.0.tar.gz'; \
+ ESUM='e33b5825b93b75b274c7fa3be33539683a25d76b7bbac51c6b24b66aee621222'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.11%2B9_openj9-0.44.0/ibm-semeru-open-jdk_aarch64_linux_17.0.11_9_openj9-0.44.0.tar.gz'; \
;; \
amd64|x86_64) \
- ESUM='be6f417cfe63a6a38ec5d02d5a19852ccdd9615e345136ed6b1ba09476b14c8e'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.10%2B7_openj9-0.43.0/ibm-semeru-open-jdk_x64_linux_17.0.10_7_openj9-0.43.0.tar.gz'; \
+ ESUM='61bf38e9005c286d55cc403eac3061bf9ebcb54af2f0475cde8261efe4effbec'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.11%2B9_openj9-0.44.0/ibm-semeru-open-jdk_x64_linux_17.0.11_9_openj9-0.44.0.tar.gz'; \
;; \
ppc64el|ppc64le) \
- ESUM='2f61775ba75812c6779659ab3108dc8a5d93664cb2619eaa1224fad77bd54d59'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.10%2B7_openj9-0.43.0/ibm-semeru-open-jdk_ppc64le_linux_17.0.10_7_openj9-0.43.0.tar.gz'; \
+ ESUM='af07d5b5d8a980826a1edd8954b868361709c1a11ef3402b28fa246c55c4e415'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.11%2B9_openj9-0.44.0/ibm-semeru-open-jdk_ppc64le_linux_17.0.11_9_openj9-0.44.0.tar.gz'; \
;; \
s390x) \
- ESUM='0e4217bb3ce00586943cfcbf3eb9bc8dcb0e2ab24e5426f754fd576a380fb3a5'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.10%2B7_openj9-0.43.0/ibm-semeru-open-jdk_s390x_linux_17.0.10_7_openj9-0.43.0.tar.gz'; \
+ ESUM='eb2ade1453801b330a06abb32e4ecac13ccc7c03029fa5bbf9604b9e1a5c9a5c'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.11%2B9_openj9-0.44.0/ibm-semeru-open-jdk_s390x_linux_17.0.11_9_openj9-0.44.0.tar.gz'; \
;;\
*) \
echo "Unsupported arch: ${ARCH}"; \
@@ -71,8 +71,8 @@ RUN set -eux; \
SCC_SIZE="50m"; \
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \
- TOMCAT_CHECKSUM="06e239d15ff7b72017c1d0752ddb1be4651374f7c1391631ec5619f4981cb2911267bc6b044d6c71a2a74738f70d433b96418951439848121f1d874862ddd3de"; \
- TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.85/bin/apache-tomcat-9.0.85.tar.gz"; \
+ TOMCAT_CHECKSUM="aaa2851bdc7a2476b6793e95174965c1c861531f161d8a138e87f8532b1af4d4b3d92dd1ae890614a692e5f13fb2e6946a1ada888f21e9d7db1964616b4181f0"; \
+ TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.89/bin/apache-tomcat-9.0.89.tar.gz"; \
\
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \
diff --git a/ibm-semeru-runtimes_open-17-jre-centos7/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-17-jre-centos7/Dockerfile.open.releases.full
index a28ccf6..eb5fce2 100644
--- a/ibm-semeru-runtimes_open-17-jre-centos7/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-17-jre-centos7/Dockerfile.open.releases.full
@@ -20,26 +20,26 @@ ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
RUN yum install -y tzdata openssl curl ca-certificates fontconfig gzip tar \
&& yum clean all
-ENV JAVA_VERSION jdk-17.0.10+7_openj9-0.43.0
+ENV JAVA_VERSION jdk-17.0.11+9_openj9-0.44.0
RUN set -eux; \
ARCH="$(uname -m)"; \
case "${ARCH}" in \
aarch64|arm64) \
- ESUM='ee2f15b9f0719eccf8e7d51404f1187c754dec55ef546b469786a72e1e9e1480'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.10%2B7_openj9-0.43.0/ibm-semeru-open-jre_aarch64_linux_17.0.10_7_openj9-0.43.0.tar.gz'; \
+ ESUM='b6764398cdbcf824f2b99c095d58efb69b140d0c9824239560d58478f67bc15b'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.11%2B9_openj9-0.44.0/ibm-semeru-open-jre_aarch64_linux_17.0.11_9_openj9-0.44.0.tar.gz'; \
;; \
ppc64el|ppc64le) \
- ESUM='2bcb7f7749648cf4c42e8afce2d56693d11a6b4f3beb4d644139ac328a0d248d'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.10%2B7_openj9-0.43.0/ibm-semeru-open-jre_ppc64le_linux_17.0.10_7_openj9-0.43.0.tar.gz'; \
+ ESUM='12a951e5353f4bccae5430de05a7204b6e1ad983780d3ecccacd2179936cc9ee'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.11%2B9_openj9-0.44.0/ibm-semeru-open-jre_ppc64le_linux_17.0.11_9_openj9-0.44.0.tar.gz'; \
;; \
amd64|x86_64) \
- ESUM='12c816256b455cfa0e6d1fc659b5ba99fa503b16778c922bc2b9d26150037009'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.10%2B7_openj9-0.43.0/ibm-semeru-open-jre_x64_linux_17.0.10_7_openj9-0.43.0.tar.gz'; \
+ ESUM='a47d3fabdf14c0f56561e5be24d689007f42cb079af0c89db235a58899fd4ab3'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.11%2B9_openj9-0.44.0/ibm-semeru-open-jre_x64_linux_17.0.11_9_openj9-0.44.0.tar.gz'; \
;; \
s390x) \
- ESUM='8ebcdf811f2fb48e3ecb3bde4374004f6cce31206e94b5063825b5ed12f284d9'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.10%2B7_openj9-0.43.0/ibm-semeru-open-jre_s390x_linux_17.0.10_7_openj9-0.43.0.tar.gz'; \
+ ESUM='049c6d6db4ba22fdfc7aaef3ee0af1bed1b71bda314b5c9ab27451d2c7392c1c'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.11%2B9_openj9-0.44.0/ibm-semeru-open-jre_s390x_linux_17.0.11_9_openj9-0.44.0.tar.gz'; \
;; \
*) \
echo "Unsupported arch: ${ARCH}"; \
@@ -68,8 +68,8 @@ RUN set -eux; \
SCC_SIZE="50m"; \
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \
- TOMCAT_CHECKSUM="06e239d15ff7b72017c1d0752ddb1be4651374f7c1391631ec5619f4981cb2911267bc6b044d6c71a2a74738f70d433b96418951439848121f1d874862ddd3de"; \
- TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.85/bin/apache-tomcat-9.0.85.tar.gz"; \
+ TOMCAT_CHECKSUM="aaa2851bdc7a2476b6793e95174965c1c861531f161d8a138e87f8532b1af4d4b3d92dd1ae890614a692e5f13fb2e6946a1ada888f21e9d7db1964616b4181f0"; \
+ TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.89/bin/apache-tomcat-9.0.89.tar.gz"; \
\
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \
diff --git a/ibm-semeru-runtimes_open-17-jre-focal/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-17-jre-focal/Dockerfile.open.releases.full
index c0dd24d..a351f3b 100644
--- a/ibm-semeru-runtimes_open-17-jre-focal/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-17-jre-focal/Dockerfile.open.releases.full
@@ -23,26 +23,26 @@ RUN apt-get update \
&& locale-gen en_US.UTF-8 \
&& rm -rf /var/lib/apt/lists/*
-ENV JAVA_VERSION jdk-17.0.10+7_openj9-0.43.0
+ENV JAVA_VERSION jdk-17.0.11+9_openj9-0.44.0
RUN set -eux; \
ARCH="$(dpkg --print-architecture)"; \
case "${ARCH}" in \
aarch64|arm64) \
- ESUM='ee2f15b9f0719eccf8e7d51404f1187c754dec55ef546b469786a72e1e9e1480'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.10%2B7_openj9-0.43.0/ibm-semeru-open-jre_aarch64_linux_17.0.10_7_openj9-0.43.0.tar.gz'; \
+ ESUM='b6764398cdbcf824f2b99c095d58efb69b140d0c9824239560d58478f67bc15b'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.11%2B9_openj9-0.44.0/ibm-semeru-open-jre_aarch64_linux_17.0.11_9_openj9-0.44.0.tar.gz'; \
;; \
ppc64el|ppc64le) \
- ESUM='2bcb7f7749648cf4c42e8afce2d56693d11a6b4f3beb4d644139ac328a0d248d'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.10%2B7_openj9-0.43.0/ibm-semeru-open-jre_ppc64le_linux_17.0.10_7_openj9-0.43.0.tar.gz'; \
+ ESUM='12a951e5353f4bccae5430de05a7204b6e1ad983780d3ecccacd2179936cc9ee'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.11%2B9_openj9-0.44.0/ibm-semeru-open-jre_ppc64le_linux_17.0.11_9_openj9-0.44.0.tar.gz'; \
;; \
amd64|x86_64) \
- ESUM='12c816256b455cfa0e6d1fc659b5ba99fa503b16778c922bc2b9d26150037009'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.10%2B7_openj9-0.43.0/ibm-semeru-open-jre_x64_linux_17.0.10_7_openj9-0.43.0.tar.gz'; \
+ ESUM='a47d3fabdf14c0f56561e5be24d689007f42cb079af0c89db235a58899fd4ab3'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.11%2B9_openj9-0.44.0/ibm-semeru-open-jre_x64_linux_17.0.11_9_openj9-0.44.0.tar.gz'; \
;; \
s390x) \
- ESUM='8ebcdf811f2fb48e3ecb3bde4374004f6cce31206e94b5063825b5ed12f284d9'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.10%2B7_openj9-0.43.0/ibm-semeru-open-jre_s390x_linux_17.0.10_7_openj9-0.43.0.tar.gz'; \
+ ESUM='049c6d6db4ba22fdfc7aaef3ee0af1bed1b71bda314b5c9ab27451d2c7392c1c'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.11%2B9_openj9-0.44.0/ibm-semeru-open-jre_s390x_linux_17.0.11_9_openj9-0.44.0.tar.gz'; \
;; \
*) \
echo "Unsupported arch: ${ARCH}"; \
@@ -71,8 +71,8 @@ RUN set -eux; \
SCC_SIZE="50m"; \
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \
- TOMCAT_CHECKSUM="06e239d15ff7b72017c1d0752ddb1be4651374f7c1391631ec5619f4981cb2911267bc6b044d6c71a2a74738f70d433b96418951439848121f1d874862ddd3de"; \
- TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.85/bin/apache-tomcat-9.0.85.tar.gz"; \
+ TOMCAT_CHECKSUM="aaa2851bdc7a2476b6793e95174965c1c861531f161d8a138e87f8532b1af4d4b3d92dd1ae890614a692e5f13fb2e6946a1ada888f21e9d7db1964616b4181f0"; \
+ TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.89/bin/apache-tomcat-9.0.89.tar.gz"; \
\
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \
diff --git a/ibm-semeru-runtimes_open-17-jre-jammy/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-17-jre-jammy/Dockerfile.open.releases.full
index 72e553e..0cb3421 100644
--- a/ibm-semeru-runtimes_open-17-jre-jammy/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-17-jre-jammy/Dockerfile.open.releases.full
@@ -23,26 +23,26 @@ RUN apt-get update \
&& locale-gen en_US.UTF-8 \
&& rm -rf /var/lib/apt/lists/*
-ENV JAVA_VERSION jdk-17.0.10+7_openj9-0.43.0
+ENV JAVA_VERSION jdk-17.0.11+9_openj9-0.44.0
RUN set -eux; \
ARCH="$(dpkg --print-architecture)"; \
case "${ARCH}" in \
aarch64|arm64) \
- ESUM='ee2f15b9f0719eccf8e7d51404f1187c754dec55ef546b469786a72e1e9e1480'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.10%2B7_openj9-0.43.0/ibm-semeru-open-jre_aarch64_linux_17.0.10_7_openj9-0.43.0.tar.gz'; \
+ ESUM='b6764398cdbcf824f2b99c095d58efb69b140d0c9824239560d58478f67bc15b'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.11%2B9_openj9-0.44.0/ibm-semeru-open-jre_aarch64_linux_17.0.11_9_openj9-0.44.0.tar.gz'; \
;; \
ppc64el|ppc64le) \
- ESUM='2bcb7f7749648cf4c42e8afce2d56693d11a6b4f3beb4d644139ac328a0d248d'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.10%2B7_openj9-0.43.0/ibm-semeru-open-jre_ppc64le_linux_17.0.10_7_openj9-0.43.0.tar.gz'; \
+ ESUM='12a951e5353f4bccae5430de05a7204b6e1ad983780d3ecccacd2179936cc9ee'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.11%2B9_openj9-0.44.0/ibm-semeru-open-jre_ppc64le_linux_17.0.11_9_openj9-0.44.0.tar.gz'; \
;; \
amd64|x86_64) \
- ESUM='12c816256b455cfa0e6d1fc659b5ba99fa503b16778c922bc2b9d26150037009'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.10%2B7_openj9-0.43.0/ibm-semeru-open-jre_x64_linux_17.0.10_7_openj9-0.43.0.tar.gz'; \
+ ESUM='a47d3fabdf14c0f56561e5be24d689007f42cb079af0c89db235a58899fd4ab3'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.11%2B9_openj9-0.44.0/ibm-semeru-open-jre_x64_linux_17.0.11_9_openj9-0.44.0.tar.gz'; \
;; \
s390x) \
- ESUM='8ebcdf811f2fb48e3ecb3bde4374004f6cce31206e94b5063825b5ed12f284d9'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.10%2B7_openj9-0.43.0/ibm-semeru-open-jre_s390x_linux_17.0.10_7_openj9-0.43.0.tar.gz'; \
+ ESUM='049c6d6db4ba22fdfc7aaef3ee0af1bed1b71bda314b5c9ab27451d2c7392c1c'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.11%2B9_openj9-0.44.0/ibm-semeru-open-jre_s390x_linux_17.0.11_9_openj9-0.44.0.tar.gz'; \
;; \
*) \
echo "Unsupported arch: ${ARCH}"; \
@@ -71,8 +71,8 @@ RUN set -eux; \
SCC_SIZE="50m"; \
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \
- TOMCAT_CHECKSUM="06e239d15ff7b72017c1d0752ddb1be4651374f7c1391631ec5619f4981cb2911267bc6b044d6c71a2a74738f70d433b96418951439848121f1d874862ddd3de"; \
- TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.85/bin/apache-tomcat-9.0.85.tar.gz"; \
+ TOMCAT_CHECKSUM="aaa2851bdc7a2476b6793e95174965c1c861531f161d8a138e87f8532b1af4d4b3d92dd1ae890614a692e5f13fb2e6946a1ada888f21e9d7db1964616b4181f0"; \
+ TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.89/bin/apache-tomcat-9.0.89.tar.gz"; \
\
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \
diff --git a/ibm-semeru-runtimes_open-21-jdk-centos7/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-21-jdk-centos7/Dockerfile.open.releases.full
index c2f0ce6..91d06d8 100644
--- a/ibm-semeru-runtimes_open-21-jdk-centos7/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-21-jdk-centos7/Dockerfile.open.releases.full
@@ -20,26 +20,26 @@ ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
RUN yum install -y tzdata openssl curl ca-certificates fontconfig gzip tar \
&& yum clean all
-ENV JAVA_VERSION jdk-21.0.2+13_openj9-0.43.0
+ENV JAVA_VERSION jdk-21.0.3+9_openj9-0.44.0
RUN set -eux; \
ARCH="$(uname -m)"; \
case "${ARCH}" in \
aarch64|arm64) \
- ESUM='6404c5fe4a71049d4f80429720b7d3f3e3b0ebea8067b823a6bfb24b9fe69797'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jdk_aarch64_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='718e465d1b22034d889445e8ae371fc58dfc733c454cf344fa5e10db0ab8a775'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.3%2B9_openj9-0.44.0/ibm-semeru-open-jdk_aarch64_linux_21.0.3_9_openj9-0.44.0.tar.gz'; \
;; \
amd64|x86_64) \
- ESUM='7a7a186a7a48537519917331ec91d9180b961dcc7ea0f627a23fa369edab6f16'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jdk_x64_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='5cccb39dc7ca6c61a11bd7179c4c3c30b747f9f22129576feef921b59725af25'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.3%2B9_openj9-0.44.0/ibm-semeru-open-jdk_x64_linux_21.0.3_9_openj9-0.44.0.tar.gz'; \
;; \
ppc64el|ppc64le) \
- ESUM='43d53cc8fbec42b1f47069178838e65ee5119ec992b511973db7badc51742674'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jdk_ppc64le_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='e3a467fcd088304c08a1c1c61f5ea2c065c10a312b01089d2eca9dd9611aab2c'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.3%2B9_openj9-0.44.0/ibm-semeru-open-jdk_ppc64le_linux_21.0.3_9_openj9-0.44.0.tar.gz'; \
;; \
s390x) \
- ESUM='15fa4c41c15fda8365d868621f75d8599cb8ea92537494c1a6d2fccb5b46c19f'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jdk_s390x_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='0135f03416588197334580c27f9a62f447fb3409907c6049008ce5fd2223520a'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.3%2B9_openj9-0.44.0/ibm-semeru-open-jdk_s390x_linux_21.0.3_9_openj9-0.44.0.tar.gz'; \
;;\
*) \
echo "Unsupported arch: ${ARCH}"; \
@@ -68,8 +68,8 @@ RUN set -eux; \
SCC_SIZE="50m"; \
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \
- TOMCAT_CHECKSUM="06e239d15ff7b72017c1d0752ddb1be4651374f7c1391631ec5619f4981cb2911267bc6b044d6c71a2a74738f70d433b96418951439848121f1d874862ddd3de"; \
- TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.85/bin/apache-tomcat-9.0.85.tar.gz"; \
+ TOMCAT_CHECKSUM="aaa2851bdc7a2476b6793e95174965c1c861531f161d8a138e87f8532b1af4d4b3d92dd1ae890614a692e5f13fb2e6946a1ada888f21e9d7db1964616b4181f0"; \
+ TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.89/bin/apache-tomcat-9.0.89.tar.gz"; \
\
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \
diff --git a/ibm-semeru-runtimes_open-21-jdk-focal/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-21-jdk-focal/Dockerfile.open.releases.full
index 79f4413..d34bd24 100644
--- a/ibm-semeru-runtimes_open-21-jdk-focal/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-21-jdk-focal/Dockerfile.open.releases.full
@@ -23,26 +23,26 @@ RUN apt-get update \
&& locale-gen en_US.UTF-8 \
&& rm -rf /var/lib/apt/lists/*
-ENV JAVA_VERSION jdk-21.0.2+13_openj9-0.43.0
+ENV JAVA_VERSION jdk-21.0.3+9_openj9-0.44.0
RUN set -eux; \
ARCH="$(dpkg --print-architecture)"; \
case "${ARCH}" in \
aarch64|arm64) \
- ESUM='6404c5fe4a71049d4f80429720b7d3f3e3b0ebea8067b823a6bfb24b9fe69797'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jdk_aarch64_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='718e465d1b22034d889445e8ae371fc58dfc733c454cf344fa5e10db0ab8a775'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.3%2B9_openj9-0.44.0/ibm-semeru-open-jdk_aarch64_linux_21.0.3_9_openj9-0.44.0.tar.gz'; \
;; \
amd64|x86_64) \
- ESUM='7a7a186a7a48537519917331ec91d9180b961dcc7ea0f627a23fa369edab6f16'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jdk_x64_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='5cccb39dc7ca6c61a11bd7179c4c3c30b747f9f22129576feef921b59725af25'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.3%2B9_openj9-0.44.0/ibm-semeru-open-jdk_x64_linux_21.0.3_9_openj9-0.44.0.tar.gz'; \
;; \
ppc64el|ppc64le) \
- ESUM='43d53cc8fbec42b1f47069178838e65ee5119ec992b511973db7badc51742674'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jdk_ppc64le_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='e3a467fcd088304c08a1c1c61f5ea2c065c10a312b01089d2eca9dd9611aab2c'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.3%2B9_openj9-0.44.0/ibm-semeru-open-jdk_ppc64le_linux_21.0.3_9_openj9-0.44.0.tar.gz'; \
;; \
s390x) \
- ESUM='15fa4c41c15fda8365d868621f75d8599cb8ea92537494c1a6d2fccb5b46c19f'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jdk_s390x_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='0135f03416588197334580c27f9a62f447fb3409907c6049008ce5fd2223520a'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.3%2B9_openj9-0.44.0/ibm-semeru-open-jdk_s390x_linux_21.0.3_9_openj9-0.44.0.tar.gz'; \
;;\
*) \
echo "Unsupported arch: ${ARCH}"; \
@@ -71,8 +71,8 @@ RUN set -eux; \
SCC_SIZE="50m"; \
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \
- TOMCAT_CHECKSUM="06e239d15ff7b72017c1d0752ddb1be4651374f7c1391631ec5619f4981cb2911267bc6b044d6c71a2a74738f70d433b96418951439848121f1d874862ddd3de"; \
- TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.85/bin/apache-tomcat-9.0.85.tar.gz"; \
+ TOMCAT_CHECKSUM="aaa2851bdc7a2476b6793e95174965c1c861531f161d8a138e87f8532b1af4d4b3d92dd1ae890614a692e5f13fb2e6946a1ada888f21e9d7db1964616b4181f0"; \
+ TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.89/bin/apache-tomcat-9.0.89.tar.gz"; \
\
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \
diff --git a/ibm-semeru-runtimes_open-21-jdk-jammy/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-21-jdk-jammy/Dockerfile.open.releases.full
index 92e28a6..d3b9a16 100644
--- a/ibm-semeru-runtimes_open-21-jdk-jammy/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-21-jdk-jammy/Dockerfile.open.releases.full
@@ -23,26 +23,26 @@ RUN apt-get update \
&& locale-gen en_US.UTF-8 \
&& rm -rf /var/lib/apt/lists/*
-ENV JAVA_VERSION jdk-21.0.2+13_openj9-0.43.0
+ENV JAVA_VERSION jdk-21.0.3+9_openj9-0.44.0
RUN set -eux; \
ARCH="$(dpkg --print-architecture)"; \
case "${ARCH}" in \
aarch64|arm64) \
- ESUM='6404c5fe4a71049d4f80429720b7d3f3e3b0ebea8067b823a6bfb24b9fe69797'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jdk_aarch64_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='718e465d1b22034d889445e8ae371fc58dfc733c454cf344fa5e10db0ab8a775'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.3%2B9_openj9-0.44.0/ibm-semeru-open-jdk_aarch64_linux_21.0.3_9_openj9-0.44.0.tar.gz'; \
;; \
amd64|x86_64) \
- ESUM='7a7a186a7a48537519917331ec91d9180b961dcc7ea0f627a23fa369edab6f16'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jdk_x64_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='5cccb39dc7ca6c61a11bd7179c4c3c30b747f9f22129576feef921b59725af25'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.3%2B9_openj9-0.44.0/ibm-semeru-open-jdk_x64_linux_21.0.3_9_openj9-0.44.0.tar.gz'; \
;; \
ppc64el|ppc64le) \
- ESUM='43d53cc8fbec42b1f47069178838e65ee5119ec992b511973db7badc51742674'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jdk_ppc64le_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='e3a467fcd088304c08a1c1c61f5ea2c065c10a312b01089d2eca9dd9611aab2c'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.3%2B9_openj9-0.44.0/ibm-semeru-open-jdk_ppc64le_linux_21.0.3_9_openj9-0.44.0.tar.gz'; \
;; \
s390x) \
- ESUM='15fa4c41c15fda8365d868621f75d8599cb8ea92537494c1a6d2fccb5b46c19f'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jdk_s390x_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='0135f03416588197334580c27f9a62f447fb3409907c6049008ce5fd2223520a'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.3%2B9_openj9-0.44.0/ibm-semeru-open-jdk_s390x_linux_21.0.3_9_openj9-0.44.0.tar.gz'; \
;;\
*) \
echo "Unsupported arch: ${ARCH}"; \
@@ -71,8 +71,8 @@ RUN set -eux; \
SCC_SIZE="50m"; \
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \
- TOMCAT_CHECKSUM="06e239d15ff7b72017c1d0752ddb1be4651374f7c1391631ec5619f4981cb2911267bc6b044d6c71a2a74738f70d433b96418951439848121f1d874862ddd3de"; \
- TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.85/bin/apache-tomcat-9.0.85.tar.gz"; \
+ TOMCAT_CHECKSUM="aaa2851bdc7a2476b6793e95174965c1c861531f161d8a138e87f8532b1af4d4b3d92dd1ae890614a692e5f13fb2e6946a1ada888f21e9d7db1964616b4181f0"; \
+ TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.89/bin/apache-tomcat-9.0.89.tar.gz"; \
\
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \
diff --git a/ibm-semeru-runtimes_open-21-jre-centos7/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-21-jre-centos7/Dockerfile.open.releases.full
index 27a0815..7e459d9 100644
--- a/ibm-semeru-runtimes_open-21-jre-centos7/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-21-jre-centos7/Dockerfile.open.releases.full
@@ -20,26 +20,26 @@ ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
RUN yum install -y tzdata openssl curl ca-certificates fontconfig gzip tar \
&& yum clean all
-ENV JAVA_VERSION jdk-21.0.2+13_openj9-0.43.0
+ENV JAVA_VERSION jdk-21.0.3+9_openj9-0.44.0
RUN set -eux; \
ARCH="$(uname -m)"; \
case "${ARCH}" in \
aarch64|arm64) \
- ESUM='d89507e6d05132106122894b76e2e466521be047c928faf3d47827b3343c3631'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jre_aarch64_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='0222dc3749e1c94bd1b047cdb02eb18310aefd9f7965b66196da06e4e3844b7a'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.3%2B9_openj9-0.44.0/ibm-semeru-open-jre_aarch64_linux_21.0.3_9_openj9-0.44.0.tar.gz'; \
;; \
amd64|x86_64) \
- ESUM='ce5a4caf90072fcac02301af6f7771f051cf89a6e63f2ff33325c13ac1fbff56'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jre_x64_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='b831e8c418374ccec13c51f60c36f4c32266f3cc83cb31f32286f89c26d66e00'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.3%2B9_openj9-0.44.0/ibm-semeru-open-jre_x64_linux_21.0.3_9_openj9-0.44.0.tar.gz'; \
;; \
ppc64el|ppc64le) \
- ESUM='434e8ca694cc0311e9962d8a967684cbafcd19535b1ec3122c29b2fe3475acbb'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jre_ppc64le_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='a2058c477df602e34d13bcdd45811abe592c72765e7f0c48c72771df22ef406b'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.3%2B9_openj9-0.44.0/ibm-semeru-open-jre_ppc64le_linux_21.0.3_9_openj9-0.44.0.tar.gz'; \
;; \
s390x) \
- ESUM='3d3f63c9d3728b8f65efb24b18e7fba178f89ee806491bc581d2228a833ae0b0'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jre_s390x_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='9c9fcc534723f8a454e4f788b1ea703bdaa91db3eaa2f9167d53123483ec66d0'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.3%2B9_openj9-0.44.0/ibm-semeru-open-jre_s390x_linux_21.0.3_9_openj9-0.44.0.tar.gz'; \
;; \
*) \
echo "Unsupported arch: ${ARCH}"; \
@@ -68,8 +68,8 @@ RUN set -eux; \
SCC_SIZE="50m"; \
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \
- TOMCAT_CHECKSUM="06e239d15ff7b72017c1d0752ddb1be4651374f7c1391631ec5619f4981cb2911267bc6b044d6c71a2a74738f70d433b96418951439848121f1d874862ddd3de"; \
- TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.85/bin/apache-tomcat-9.0.85.tar.gz"; \
+ TOMCAT_CHECKSUM="aaa2851bdc7a2476b6793e95174965c1c861531f161d8a138e87f8532b1af4d4b3d92dd1ae890614a692e5f13fb2e6946a1ada888f21e9d7db1964616b4181f0"; \
+ TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.89/bin/apache-tomcat-9.0.89.tar.gz"; \
\
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \
diff --git a/ibm-semeru-runtimes_open-21-jre-focal/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-21-jre-focal/Dockerfile.open.releases.full
index 11480f4..1b85905 100644
--- a/ibm-semeru-runtimes_open-21-jre-focal/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-21-jre-focal/Dockerfile.open.releases.full
@@ -23,26 +23,26 @@ RUN apt-get update \
&& locale-gen en_US.UTF-8 \
&& rm -rf /var/lib/apt/lists/*
-ENV JAVA_VERSION jdk-21.0.2+13_openj9-0.43.0
+ENV JAVA_VERSION jdk-21.0.3+9_openj9-0.44.0
RUN set -eux; \
ARCH="$(dpkg --print-architecture)"; \
case "${ARCH}" in \
aarch64|arm64) \
- ESUM='d89507e6d05132106122894b76e2e466521be047c928faf3d47827b3343c3631'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jre_aarch64_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='0222dc3749e1c94bd1b047cdb02eb18310aefd9f7965b66196da06e4e3844b7a'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.3%2B9_openj9-0.44.0/ibm-semeru-open-jre_aarch64_linux_21.0.3_9_openj9-0.44.0.tar.gz'; \
;; \
amd64|x86_64) \
- ESUM='ce5a4caf90072fcac02301af6f7771f051cf89a6e63f2ff33325c13ac1fbff56'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jre_x64_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='b831e8c418374ccec13c51f60c36f4c32266f3cc83cb31f32286f89c26d66e00'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.3%2B9_openj9-0.44.0/ibm-semeru-open-jre_x64_linux_21.0.3_9_openj9-0.44.0.tar.gz'; \
;; \
ppc64el|ppc64le) \
- ESUM='434e8ca694cc0311e9962d8a967684cbafcd19535b1ec3122c29b2fe3475acbb'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jre_ppc64le_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='a2058c477df602e34d13bcdd45811abe592c72765e7f0c48c72771df22ef406b'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.3%2B9_openj9-0.44.0/ibm-semeru-open-jre_ppc64le_linux_21.0.3_9_openj9-0.44.0.tar.gz'; \
;; \
s390x) \
- ESUM='3d3f63c9d3728b8f65efb24b18e7fba178f89ee806491bc581d2228a833ae0b0'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jre_s390x_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='9c9fcc534723f8a454e4f788b1ea703bdaa91db3eaa2f9167d53123483ec66d0'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.3%2B9_openj9-0.44.0/ibm-semeru-open-jre_s390x_linux_21.0.3_9_openj9-0.44.0.tar.gz'; \
;; \
*) \
echo "Unsupported arch: ${ARCH}"; \
@@ -71,8 +71,8 @@ RUN set -eux; \
SCC_SIZE="50m"; \
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \
- TOMCAT_CHECKSUM="06e239d15ff7b72017c1d0752ddb1be4651374f7c1391631ec5619f4981cb2911267bc6b044d6c71a2a74738f70d433b96418951439848121f1d874862ddd3de"; \
- TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.85/bin/apache-tomcat-9.0.85.tar.gz"; \
+ TOMCAT_CHECKSUM="aaa2851bdc7a2476b6793e95174965c1c861531f161d8a138e87f8532b1af4d4b3d92dd1ae890614a692e5f13fb2e6946a1ada888f21e9d7db1964616b4181f0"; \
+ TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.89/bin/apache-tomcat-9.0.89.tar.gz"; \
\
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \
diff --git a/ibm-semeru-runtimes_open-21-jre-jammy/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-21-jre-jammy/Dockerfile.open.releases.full
index f63c002..4fa0dec 100644
--- a/ibm-semeru-runtimes_open-21-jre-jammy/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-21-jre-jammy/Dockerfile.open.releases.full
@@ -23,26 +23,26 @@ RUN apt-get update \
&& locale-gen en_US.UTF-8 \
&& rm -rf /var/lib/apt/lists/*
-ENV JAVA_VERSION jdk-21.0.2+13_openj9-0.43.0
+ENV JAVA_VERSION jdk-21.0.3+9_openj9-0.44.0
RUN set -eux; \
ARCH="$(dpkg --print-architecture)"; \
case "${ARCH}" in \
aarch64|arm64) \
- ESUM='d89507e6d05132106122894b76e2e466521be047c928faf3d47827b3343c3631'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jre_aarch64_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='0222dc3749e1c94bd1b047cdb02eb18310aefd9f7965b66196da06e4e3844b7a'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.3%2B9_openj9-0.44.0/ibm-semeru-open-jre_aarch64_linux_21.0.3_9_openj9-0.44.0.tar.gz'; \
;; \
amd64|x86_64) \
- ESUM='ce5a4caf90072fcac02301af6f7771f051cf89a6e63f2ff33325c13ac1fbff56'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jre_x64_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='b831e8c418374ccec13c51f60c36f4c32266f3cc83cb31f32286f89c26d66e00'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.3%2B9_openj9-0.44.0/ibm-semeru-open-jre_x64_linux_21.0.3_9_openj9-0.44.0.tar.gz'; \
;; \
ppc64el|ppc64le) \
- ESUM='434e8ca694cc0311e9962d8a967684cbafcd19535b1ec3122c29b2fe3475acbb'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jre_ppc64le_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='a2058c477df602e34d13bcdd45811abe592c72765e7f0c48c72771df22ef406b'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.3%2B9_openj9-0.44.0/ibm-semeru-open-jre_ppc64le_linux_21.0.3_9_openj9-0.44.0.tar.gz'; \
;; \
s390x) \
- ESUM='3d3f63c9d3728b8f65efb24b18e7fba178f89ee806491bc581d2228a833ae0b0'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jre_s390x_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='9c9fcc534723f8a454e4f788b1ea703bdaa91db3eaa2f9167d53123483ec66d0'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.3%2B9_openj9-0.44.0/ibm-semeru-open-jre_s390x_linux_21.0.3_9_openj9-0.44.0.tar.gz'; \
;; \
*) \
echo "Unsupported arch: ${ARCH}"; \
@@ -71,8 +71,8 @@ RUN set -eux; \
SCC_SIZE="50m"; \
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \
- TOMCAT_CHECKSUM="06e239d15ff7b72017c1d0752ddb1be4651374f7c1391631ec5619f4981cb2911267bc6b044d6c71a2a74738f70d433b96418951439848121f1d874862ddd3de"; \
- TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.85/bin/apache-tomcat-9.0.85.tar.gz"; \
+ TOMCAT_CHECKSUM="aaa2851bdc7a2476b6793e95174965c1c861531f161d8a138e87f8532b1af4d4b3d92dd1ae890614a692e5f13fb2e6946a1ada888f21e9d7db1964616b4181f0"; \
+ TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.89/bin/apache-tomcat-9.0.89.tar.gz"; \
\
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \
diff --git a/ibm-semeru-runtimes_open-21-jdk-centos7/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-22-jdk-centos7/Dockerfile.open.releases.full
similarity index 77%
copy from ibm-semeru-runtimes_open-21-jdk-centos7/Dockerfile.open.releases.full
copy to ibm-semeru-runtimes_open-22-jdk-centos7/Dockerfile.open.releases.full
index c2f0ce6..0213546 100644
--- a/ibm-semeru-runtimes_open-21-jdk-centos7/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-22-jdk-centos7/Dockerfile.open.releases.full
@@ -20,26 +20,26 @@ ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
RUN yum install -y tzdata openssl curl ca-certificates fontconfig gzip tar \
&& yum clean all
-ENV JAVA_VERSION jdk-21.0.2+13_openj9-0.43.0
+ENV JAVA_VERSION jdk-22.0.1+8_openj9-0.45.0
RUN set -eux; \
ARCH="$(uname -m)"; \
case "${ARCH}" in \
aarch64|arm64) \
- ESUM='6404c5fe4a71049d4f80429720b7d3f3e3b0ebea8067b823a6bfb24b9fe69797'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jdk_aarch64_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='feb2734b519990d730c577254df5a97f7110bb851994ce775977894a9fdc22c7'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru22-binaries/releases/download/jdk-22.0.1%2B8_openj9-0.45.0/ibm-semeru-open-jdk_aarch64_linux_22.0.1_8_openj9-0.45.0.tar.gz'; \
;; \
amd64|x86_64) \
- ESUM='7a7a186a7a48537519917331ec91d9180b961dcc7ea0f627a23fa369edab6f16'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jdk_x64_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='6e54d984bc0c058ffb7a604810dfffba210d79e12855e5c61e9295fedeff32db'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru22-binaries/releases/download/jdk-22.0.1%2B8_openj9-0.45.0/ibm-semeru-open-jdk_x64_linux_22.0.1_8_openj9-0.45.0.tar.gz'; \
;; \
ppc64el|ppc64le) \
- ESUM='43d53cc8fbec42b1f47069178838e65ee5119ec992b511973db7badc51742674'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jdk_ppc64le_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='6856013348e19f3e532e6658827ba8297a8741cdd573e9640b8263562b670f87'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru22-binaries/releases/download/jdk-22.0.1%2B8_openj9-0.45.0/ibm-semeru-open-jdk_ppc64le_linux_22.0.1_8_openj9-0.45.0.tar.gz'; \
;; \
s390x) \
- ESUM='15fa4c41c15fda8365d868621f75d8599cb8ea92537494c1a6d2fccb5b46c19f'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jdk_s390x_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='6a6e47d4b4a175bc283049214e40c7cd560c8a133d04429bc444defb075056e5'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru22-binaries/releases/download/jdk-22.0.1%2B8_openj9-0.45.0/ibm-semeru-open-jdk_s390x_linux_22.0.1_8_openj9-0.45.0.tar.gz'; \
;;\
*) \
echo "Unsupported arch: ${ARCH}"; \
@@ -68,8 +68,8 @@ RUN set -eux; \
SCC_SIZE="50m"; \
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \
- TOMCAT_CHECKSUM="06e239d15ff7b72017c1d0752ddb1be4651374f7c1391631ec5619f4981cb2911267bc6b044d6c71a2a74738f70d433b96418951439848121f1d874862ddd3de"; \
- TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.85/bin/apache-tomcat-9.0.85.tar.gz"; \
+ TOMCAT_CHECKSUM="aaa2851bdc7a2476b6793e95174965c1c861531f161d8a138e87f8532b1af4d4b3d92dd1ae890614a692e5f13fb2e6946a1ada888f21e9d7db1964616b4181f0"; \
+ TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.89/bin/apache-tomcat-9.0.89.tar.gz"; \
\
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \
diff --git a/ibm-semeru-runtimes_open-21-jdk-focal/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-22-jdk-focal/Dockerfile.open.releases.full
similarity index 77%
copy from ibm-semeru-runtimes_open-21-jdk-focal/Dockerfile.open.releases.full
copy to ibm-semeru-runtimes_open-22-jdk-focal/Dockerfile.open.releases.full
index 79f4413..203d30e 100644
--- a/ibm-semeru-runtimes_open-21-jdk-focal/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-22-jdk-focal/Dockerfile.open.releases.full
@@ -23,26 +23,26 @@ RUN apt-get update \
&& locale-gen en_US.UTF-8 \
&& rm -rf /var/lib/apt/lists/*
-ENV JAVA_VERSION jdk-21.0.2+13_openj9-0.43.0
+ENV JAVA_VERSION jdk-22.0.1+8_openj9-0.45.0
RUN set -eux; \
ARCH="$(dpkg --print-architecture)"; \
case "${ARCH}" in \
aarch64|arm64) \
- ESUM='6404c5fe4a71049d4f80429720b7d3f3e3b0ebea8067b823a6bfb24b9fe69797'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jdk_aarch64_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='feb2734b519990d730c577254df5a97f7110bb851994ce775977894a9fdc22c7'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru22-binaries/releases/download/jdk-22.0.1%2B8_openj9-0.45.0/ibm-semeru-open-jdk_aarch64_linux_22.0.1_8_openj9-0.45.0.tar.gz'; \
;; \
amd64|x86_64) \
- ESUM='7a7a186a7a48537519917331ec91d9180b961dcc7ea0f627a23fa369edab6f16'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jdk_x64_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='6e54d984bc0c058ffb7a604810dfffba210d79e12855e5c61e9295fedeff32db'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru22-binaries/releases/download/jdk-22.0.1%2B8_openj9-0.45.0/ibm-semeru-open-jdk_x64_linux_22.0.1_8_openj9-0.45.0.tar.gz'; \
;; \
ppc64el|ppc64le) \
- ESUM='43d53cc8fbec42b1f47069178838e65ee5119ec992b511973db7badc51742674'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jdk_ppc64le_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='6856013348e19f3e532e6658827ba8297a8741cdd573e9640b8263562b670f87'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru22-binaries/releases/download/jdk-22.0.1%2B8_openj9-0.45.0/ibm-semeru-open-jdk_ppc64le_linux_22.0.1_8_openj9-0.45.0.tar.gz'; \
;; \
s390x) \
- ESUM='15fa4c41c15fda8365d868621f75d8599cb8ea92537494c1a6d2fccb5b46c19f'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jdk_s390x_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='6a6e47d4b4a175bc283049214e40c7cd560c8a133d04429bc444defb075056e5'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru22-binaries/releases/download/jdk-22.0.1%2B8_openj9-0.45.0/ibm-semeru-open-jdk_s390x_linux_22.0.1_8_openj9-0.45.0.tar.gz'; \
;;\
*) \
echo "Unsupported arch: ${ARCH}"; \
@@ -71,8 +71,8 @@ RUN set -eux; \
SCC_SIZE="50m"; \
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \
- TOMCAT_CHECKSUM="06e239d15ff7b72017c1d0752ddb1be4651374f7c1391631ec5619f4981cb2911267bc6b044d6c71a2a74738f70d433b96418951439848121f1d874862ddd3de"; \
- TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.85/bin/apache-tomcat-9.0.85.tar.gz"; \
+ TOMCAT_CHECKSUM="aaa2851bdc7a2476b6793e95174965c1c861531f161d8a138e87f8532b1af4d4b3d92dd1ae890614a692e5f13fb2e6946a1ada888f21e9d7db1964616b4181f0"; \
+ TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.89/bin/apache-tomcat-9.0.89.tar.gz"; \
\
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \
diff --git a/ibm-semeru-runtimes_open-21-jdk-jammy/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-22-jdk-jammy/Dockerfile.open.releases.full
similarity index 77%
copy from ibm-semeru-runtimes_open-21-jdk-jammy/Dockerfile.open.releases.full
copy to ibm-semeru-runtimes_open-22-jdk-jammy/Dockerfile.open.releases.full
index 92e28a6..c064d09 100644
--- a/ibm-semeru-runtimes_open-21-jdk-jammy/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-22-jdk-jammy/Dockerfile.open.releases.full
@@ -23,26 +23,26 @@ RUN apt-get update \
&& locale-gen en_US.UTF-8 \
&& rm -rf /var/lib/apt/lists/*
-ENV JAVA_VERSION jdk-21.0.2+13_openj9-0.43.0
+ENV JAVA_VERSION jdk-22.0.1+8_openj9-0.45.0
RUN set -eux; \
ARCH="$(dpkg --print-architecture)"; \
case "${ARCH}" in \
aarch64|arm64) \
- ESUM='6404c5fe4a71049d4f80429720b7d3f3e3b0ebea8067b823a6bfb24b9fe69797'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jdk_aarch64_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='feb2734b519990d730c577254df5a97f7110bb851994ce775977894a9fdc22c7'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru22-binaries/releases/download/jdk-22.0.1%2B8_openj9-0.45.0/ibm-semeru-open-jdk_aarch64_linux_22.0.1_8_openj9-0.45.0.tar.gz'; \
;; \
amd64|x86_64) \
- ESUM='7a7a186a7a48537519917331ec91d9180b961dcc7ea0f627a23fa369edab6f16'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jdk_x64_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='6e54d984bc0c058ffb7a604810dfffba210d79e12855e5c61e9295fedeff32db'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru22-binaries/releases/download/jdk-22.0.1%2B8_openj9-0.45.0/ibm-semeru-open-jdk_x64_linux_22.0.1_8_openj9-0.45.0.tar.gz'; \
;; \
ppc64el|ppc64le) \
- ESUM='43d53cc8fbec42b1f47069178838e65ee5119ec992b511973db7badc51742674'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jdk_ppc64le_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='6856013348e19f3e532e6658827ba8297a8741cdd573e9640b8263562b670f87'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru22-binaries/releases/download/jdk-22.0.1%2B8_openj9-0.45.0/ibm-semeru-open-jdk_ppc64le_linux_22.0.1_8_openj9-0.45.0.tar.gz'; \
;; \
s390x) \
- ESUM='15fa4c41c15fda8365d868621f75d8599cb8ea92537494c1a6d2fccb5b46c19f'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jdk_s390x_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='6a6e47d4b4a175bc283049214e40c7cd560c8a133d04429bc444defb075056e5'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru22-binaries/releases/download/jdk-22.0.1%2B8_openj9-0.45.0/ibm-semeru-open-jdk_s390x_linux_22.0.1_8_openj9-0.45.0.tar.gz'; \
;;\
*) \
echo "Unsupported arch: ${ARCH}"; \
@@ -71,8 +71,8 @@ RUN set -eux; \
SCC_SIZE="50m"; \
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \
- TOMCAT_CHECKSUM="06e239d15ff7b72017c1d0752ddb1be4651374f7c1391631ec5619f4981cb2911267bc6b044d6c71a2a74738f70d433b96418951439848121f1d874862ddd3de"; \
- TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.85/bin/apache-tomcat-9.0.85.tar.gz"; \
+ TOMCAT_CHECKSUM="aaa2851bdc7a2476b6793e95174965c1c861531f161d8a138e87f8532b1af4d4b3d92dd1ae890614a692e5f13fb2e6946a1ada888f21e9d7db1964616b4181f0"; \
+ TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.89/bin/apache-tomcat-9.0.89.tar.gz"; \
\
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \
diff --git a/ibm-semeru-runtimes_open-21-jre-centos7/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-22-jre-centos7/Dockerfile.open.releases.full
similarity index 77%
copy from ibm-semeru-runtimes_open-21-jre-centos7/Dockerfile.open.releases.full
copy to ibm-semeru-runtimes_open-22-jre-centos7/Dockerfile.open.releases.full
index 27a0815..180acd7 100644
--- a/ibm-semeru-runtimes_open-21-jre-centos7/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-22-jre-centos7/Dockerfile.open.releases.full
@@ -20,26 +20,26 @@ ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
RUN yum install -y tzdata openssl curl ca-certificates fontconfig gzip tar \
&& yum clean all
-ENV JAVA_VERSION jdk-21.0.2+13_openj9-0.43.0
+ENV JAVA_VERSION jdk-22.0.1+8_openj9-0.45.0
RUN set -eux; \
ARCH="$(uname -m)"; \
case "${ARCH}" in \
aarch64|arm64) \
- ESUM='d89507e6d05132106122894b76e2e466521be047c928faf3d47827b3343c3631'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jre_aarch64_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='a8f4d53b51eda84d76ba4ac6860ae300884f2d140fe7b756b3c4a6a5823eaea5'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru22-binaries/releases/download/jdk-22.0.1%2B8_openj9-0.45.0/ibm-semeru-open-jre_aarch64_linux_22.0.1_8_openj9-0.45.0.tar.gz'; \
;; \
amd64|x86_64) \
- ESUM='ce5a4caf90072fcac02301af6f7771f051cf89a6e63f2ff33325c13ac1fbff56'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jre_x64_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='8c02a6d2d78eff437dad98cb7fa0a27301bb1e6877bf6407ecb047c94a480452'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru22-binaries/releases/download/jdk-22.0.1%2B8_openj9-0.45.0/ibm-semeru-open-jre_x64_linux_22.0.1_8_openj9-0.45.0.tar.gz'; \
;; \
ppc64el|ppc64le) \
- ESUM='434e8ca694cc0311e9962d8a967684cbafcd19535b1ec3122c29b2fe3475acbb'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jre_ppc64le_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='6a7a3f626d4672a17ad3b3b17f05ba29ecf37c479cd0434790a5566feffe92ef'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru22-binaries/releases/download/jdk-22.0.1%2B8_openj9-0.45.0/ibm-semeru-open-jre_ppc64le_linux_22.0.1_8_openj9-0.45.0.tar.gz'; \
;; \
s390x) \
- ESUM='3d3f63c9d3728b8f65efb24b18e7fba178f89ee806491bc581d2228a833ae0b0'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jre_s390x_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='6f652c2dc45f13bb24578e648207cc42c82d1732b70636a21d0dcbef9bc85e50'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru22-binaries/releases/download/jdk-22.0.1%2B8_openj9-0.45.0/ibm-semeru-open-jre_s390x_linux_22.0.1_8_openj9-0.45.0.tar.gz'; \
;; \
*) \
echo "Unsupported arch: ${ARCH}"; \
@@ -68,8 +68,8 @@ RUN set -eux; \
SCC_SIZE="50m"; \
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \
- TOMCAT_CHECKSUM="06e239d15ff7b72017c1d0752ddb1be4651374f7c1391631ec5619f4981cb2911267bc6b044d6c71a2a74738f70d433b96418951439848121f1d874862ddd3de"; \
- TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.85/bin/apache-tomcat-9.0.85.tar.gz"; \
+ TOMCAT_CHECKSUM="aaa2851bdc7a2476b6793e95174965c1c861531f161d8a138e87f8532b1af4d4b3d92dd1ae890614a692e5f13fb2e6946a1ada888f21e9d7db1964616b4181f0"; \
+ TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.89/bin/apache-tomcat-9.0.89.tar.gz"; \
\
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \
diff --git a/ibm-semeru-runtimes_open-21-jre-focal/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-22-jre-focal/Dockerfile.open.releases.full
similarity index 77%
copy from ibm-semeru-runtimes_open-21-jre-focal/Dockerfile.open.releases.full
copy to ibm-semeru-runtimes_open-22-jre-focal/Dockerfile.open.releases.full
index 11480f4..61de5ba 100644
--- a/ibm-semeru-runtimes_open-21-jre-focal/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-22-jre-focal/Dockerfile.open.releases.full
@@ -23,26 +23,26 @@ RUN apt-get update \
&& locale-gen en_US.UTF-8 \
&& rm -rf /var/lib/apt/lists/*
-ENV JAVA_VERSION jdk-21.0.2+13_openj9-0.43.0
+ENV JAVA_VERSION jdk-22.0.1+8_openj9-0.45.0
RUN set -eux; \
ARCH="$(dpkg --print-architecture)"; \
case "${ARCH}" in \
aarch64|arm64) \
- ESUM='d89507e6d05132106122894b76e2e466521be047c928faf3d47827b3343c3631'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jre_aarch64_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='a8f4d53b51eda84d76ba4ac6860ae300884f2d140fe7b756b3c4a6a5823eaea5'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru22-binaries/releases/download/jdk-22.0.1%2B8_openj9-0.45.0/ibm-semeru-open-jre_aarch64_linux_22.0.1_8_openj9-0.45.0.tar.gz'; \
;; \
amd64|x86_64) \
- ESUM='ce5a4caf90072fcac02301af6f7771f051cf89a6e63f2ff33325c13ac1fbff56'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jre_x64_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='8c02a6d2d78eff437dad98cb7fa0a27301bb1e6877bf6407ecb047c94a480452'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru22-binaries/releases/download/jdk-22.0.1%2B8_openj9-0.45.0/ibm-semeru-open-jre_x64_linux_22.0.1_8_openj9-0.45.0.tar.gz'; \
;; \
ppc64el|ppc64le) \
- ESUM='434e8ca694cc0311e9962d8a967684cbafcd19535b1ec3122c29b2fe3475acbb'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jre_ppc64le_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='6a7a3f626d4672a17ad3b3b17f05ba29ecf37c479cd0434790a5566feffe92ef'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru22-binaries/releases/download/jdk-22.0.1%2B8_openj9-0.45.0/ibm-semeru-open-jre_ppc64le_linux_22.0.1_8_openj9-0.45.0.tar.gz'; \
;; \
s390x) \
- ESUM='3d3f63c9d3728b8f65efb24b18e7fba178f89ee806491bc581d2228a833ae0b0'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jre_s390x_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='6f652c2dc45f13bb24578e648207cc42c82d1732b70636a21d0dcbef9bc85e50'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru22-binaries/releases/download/jdk-22.0.1%2B8_openj9-0.45.0/ibm-semeru-open-jre_s390x_linux_22.0.1_8_openj9-0.45.0.tar.gz'; \
;; \
*) \
echo "Unsupported arch: ${ARCH}"; \
@@ -71,8 +71,8 @@ RUN set -eux; \
SCC_SIZE="50m"; \
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \
- TOMCAT_CHECKSUM="06e239d15ff7b72017c1d0752ddb1be4651374f7c1391631ec5619f4981cb2911267bc6b044d6c71a2a74738f70d433b96418951439848121f1d874862ddd3de"; \
- TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.85/bin/apache-tomcat-9.0.85.tar.gz"; \
+ TOMCAT_CHECKSUM="aaa2851bdc7a2476b6793e95174965c1c861531f161d8a138e87f8532b1af4d4b3d92dd1ae890614a692e5f13fb2e6946a1ada888f21e9d7db1964616b4181f0"; \
+ TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.89/bin/apache-tomcat-9.0.89.tar.gz"; \
\
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \
diff --git a/ibm-semeru-runtimes_open-21-jre-jammy/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-22-jre-jammy/Dockerfile.open.releases.full
similarity index 77%
copy from ibm-semeru-runtimes_open-21-jre-jammy/Dockerfile.open.releases.full
copy to ibm-semeru-runtimes_open-22-jre-jammy/Dockerfile.open.releases.full
index f63c002..4b8f7c1 100644
--- a/ibm-semeru-runtimes_open-21-jre-jammy/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-22-jre-jammy/Dockerfile.open.releases.full
@@ -23,26 +23,26 @@ RUN apt-get update \
&& locale-gen en_US.UTF-8 \
&& rm -rf /var/lib/apt/lists/*
-ENV JAVA_VERSION jdk-21.0.2+13_openj9-0.43.0
+ENV JAVA_VERSION jdk-22.0.1+8_openj9-0.45.0
RUN set -eux; \
ARCH="$(dpkg --print-architecture)"; \
case "${ARCH}" in \
aarch64|arm64) \
- ESUM='d89507e6d05132106122894b76e2e466521be047c928faf3d47827b3343c3631'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jre_aarch64_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='a8f4d53b51eda84d76ba4ac6860ae300884f2d140fe7b756b3c4a6a5823eaea5'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru22-binaries/releases/download/jdk-22.0.1%2B8_openj9-0.45.0/ibm-semeru-open-jre_aarch64_linux_22.0.1_8_openj9-0.45.0.tar.gz'; \
;; \
amd64|x86_64) \
- ESUM='ce5a4caf90072fcac02301af6f7771f051cf89a6e63f2ff33325c13ac1fbff56'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jre_x64_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='8c02a6d2d78eff437dad98cb7fa0a27301bb1e6877bf6407ecb047c94a480452'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru22-binaries/releases/download/jdk-22.0.1%2B8_openj9-0.45.0/ibm-semeru-open-jre_x64_linux_22.0.1_8_openj9-0.45.0.tar.gz'; \
;; \
ppc64el|ppc64le) \
- ESUM='434e8ca694cc0311e9962d8a967684cbafcd19535b1ec3122c29b2fe3475acbb'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jre_ppc64le_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='6a7a3f626d4672a17ad3b3b17f05ba29ecf37c479cd0434790a5566feffe92ef'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru22-binaries/releases/download/jdk-22.0.1%2B8_openj9-0.45.0/ibm-semeru-open-jre_ppc64le_linux_22.0.1_8_openj9-0.45.0.tar.gz'; \
;; \
s390x) \
- ESUM='3d3f63c9d3728b8f65efb24b18e7fba178f89ee806491bc581d2228a833ae0b0'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jre_s390x_linux_21.0.2_13_openj9-0.43.0.tar.gz'; \
+ ESUM='6f652c2dc45f13bb24578e648207cc42c82d1732b70636a21d0dcbef9bc85e50'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru22-binaries/releases/download/jdk-22.0.1%2B8_openj9-0.45.0/ibm-semeru-open-jre_s390x_linux_22.0.1_8_openj9-0.45.0.tar.gz'; \
;; \
*) \
echo "Unsupported arch: ${ARCH}"; \
@@ -71,8 +71,8 @@ RUN set -eux; \
SCC_SIZE="50m"; \
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \
- TOMCAT_CHECKSUM="06e239d15ff7b72017c1d0752ddb1be4651374f7c1391631ec5619f4981cb2911267bc6b044d6c71a2a74738f70d433b96418951439848121f1d874862ddd3de"; \
- TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.85/bin/apache-tomcat-9.0.85.tar.gz"; \
+ TOMCAT_CHECKSUM="aaa2851bdc7a2476b6793e95174965c1c861531f161d8a138e87f8532b1af4d4b3d92dd1ae890614a692e5f13fb2e6946a1ada888f21e9d7db1964616b4181f0"; \
+ TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.89/bin/apache-tomcat-9.0.89.tar.gz"; \
\
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \
diff --git a/ibm-semeru-runtimes_open-8-jdk-centos7/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-8-jdk-centos7/Dockerfile.open.releases.full
index c342e5b..4251035 100644
--- a/ibm-semeru-runtimes_open-8-jdk-centos7/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-8-jdk-centos7/Dockerfile.open.releases.full
@@ -20,26 +20,26 @@ ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
RUN yum install -y tzdata openssl curl ca-certificates fontconfig gzip tar \
&& yum clean all
-ENV JAVA_VERSION jdk8u402-b06_openj9-0.43.0
+ENV JAVA_VERSION jdk8u412-b08_openj9-0.44.0
RUN set -eux; \
ARCH="$(uname -m)"; \
case "${ARCH}" in \
aarch64|arm64) \
- ESUM='eee642d945d249f9aa2bba0b788a7d79d4989a32205b18e6bb075b50e77d700a'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u402-b06_openj9-0.43.0/ibm-semeru-open-jdk_aarch64_linux_8u402b06_openj9-0.43.0.tar.gz'; \
+ ESUM='2baa88e7ed0ea9f72310fb4adfe99ee06fdb514cc04517b0e0be3c0646493ea3'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u412-b08_openj9-0.44.0/ibm-semeru-open-jdk_aarch64_linux_8u412b08_openj9-0.44.0.tar.gz'; \
;; \
ppc64el|ppc64le) \
- ESUM='ebdc8bcf61a5efb53e7043130fbaf88d5d97498225fee0c0bc0b6e9ace65d768'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u402-b06_openj9-0.43.0/ibm-semeru-open-jdk_ppc64le_linux_8u402b06_openj9-0.43.0.tar.gz'; \
+ ESUM='6b4b2bca348877aaf8941f021a989d647b9575fb84b4ef001abf7182787772ff'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u412-b08_openj9-0.44.0/ibm-semeru-open-jdk_ppc64le_linux_8u412b08_openj9-0.44.0.tar.gz'; \
;; \
amd64|x86_64) \
- ESUM='6e5f623ca42d1f37e769a44b26641a6b0382145f5eb8d9c3ff980e6ebcd7ac2e'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u402-b06_openj9-0.43.0/ibm-semeru-open-jdk_x64_linux_8u402b06_openj9-0.43.0.tar.gz'; \
+ ESUM='85af2c57078aab240ce31ba3f7a8e86696ff5bdf4c30f3c37f107986f07b23a6'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u412-b08_openj9-0.44.0/ibm-semeru-open-jdk_x64_linux_8u412b08_openj9-0.44.0.tar.gz'; \
;; \
s390x) \
- ESUM='f5d92d3f04074516d31b1aeea8de16c44db65bf27b70da626f1d16a116299142'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u402-b06_openj9-0.43.0/ibm-semeru-open-jdk_s390x_linux_8u402b06_openj9-0.43.0.tar.gz'; \
+ ESUM='70afb4cdc8b95b1eb2c2b6cc4b0b9cec705b41ce328a7900fb72dc83e6eee01f'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u412-b08_openj9-0.44.0/ibm-semeru-open-jdk_s390x_linux_8u412b08_openj9-0.44.0.tar.gz'; \
;; \
*) \
echo "Unsupported arch: ${ARCH}"; \
@@ -68,8 +68,8 @@ RUN set -eux; \
SCC_SIZE="50m"; \
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \
- TOMCAT_CHECKSUM="06e239d15ff7b72017c1d0752ddb1be4651374f7c1391631ec5619f4981cb2911267bc6b044d6c71a2a74738f70d433b96418951439848121f1d874862ddd3de"; \
- TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.85/bin/apache-tomcat-9.0.85.tar.gz"; \
+ TOMCAT_CHECKSUM="aaa2851bdc7a2476b6793e95174965c1c861531f161d8a138e87f8532b1af4d4b3d92dd1ae890614a692e5f13fb2e6946a1ada888f21e9d7db1964616b4181f0"; \
+ TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.89/bin/apache-tomcat-9.0.89.tar.gz"; \
\
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \
diff --git a/ibm-semeru-runtimes_open-8-jdk-focal/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-8-jdk-focal/Dockerfile.open.releases.full
index 8e6087a..afc08d8 100644
--- a/ibm-semeru-runtimes_open-8-jdk-focal/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-8-jdk-focal/Dockerfile.open.releases.full
@@ -24,26 +24,26 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*
-ENV JAVA_VERSION jdk8u402-b06_openj9-0.43.0
+ENV JAVA_VERSION jdk8u412-b08_openj9-0.44.0
RUN set -eux; \
ARCH="$(dpkg --print-architecture)"; \
case "${ARCH}" in \
aarch64|arm64) \
- ESUM='eee642d945d249f9aa2bba0b788a7d79d4989a32205b18e6bb075b50e77d700a'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u402-b06_openj9-0.43.0/ibm-semeru-open-jdk_aarch64_linux_8u402b06_openj9-0.43.0.tar.gz'; \
+ ESUM='2baa88e7ed0ea9f72310fb4adfe99ee06fdb514cc04517b0e0be3c0646493ea3'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u412-b08_openj9-0.44.0/ibm-semeru-open-jdk_aarch64_linux_8u412b08_openj9-0.44.0.tar.gz'; \
;; \
ppc64el|ppc64le) \
- ESUM='ebdc8bcf61a5efb53e7043130fbaf88d5d97498225fee0c0bc0b6e9ace65d768'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u402-b06_openj9-0.43.0/ibm-semeru-open-jdk_ppc64le_linux_8u402b06_openj9-0.43.0.tar.gz'; \
+ ESUM='6b4b2bca348877aaf8941f021a989d647b9575fb84b4ef001abf7182787772ff'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u412-b08_openj9-0.44.0/ibm-semeru-open-jdk_ppc64le_linux_8u412b08_openj9-0.44.0.tar.gz'; \
;; \
amd64|x86_64) \
- ESUM='6e5f623ca42d1f37e769a44b26641a6b0382145f5eb8d9c3ff980e6ebcd7ac2e'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u402-b06_openj9-0.43.0/ibm-semeru-open-jdk_x64_linux_8u402b06_openj9-0.43.0.tar.gz'; \
+ ESUM='85af2c57078aab240ce31ba3f7a8e86696ff5bdf4c30f3c37f107986f07b23a6'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u412-b08_openj9-0.44.0/ibm-semeru-open-jdk_x64_linux_8u412b08_openj9-0.44.0.tar.gz'; \
;; \
s390x) \
- ESUM='f5d92d3f04074516d31b1aeea8de16c44db65bf27b70da626f1d16a116299142'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u402-b06_openj9-0.43.0/ibm-semeru-open-jdk_s390x_linux_8u402b06_openj9-0.43.0.tar.gz'; \
+ ESUM='70afb4cdc8b95b1eb2c2b6cc4b0b9cec705b41ce328a7900fb72dc83e6eee01f'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u412-b08_openj9-0.44.0/ibm-semeru-open-jdk_s390x_linux_8u412b08_openj9-0.44.0.tar.gz'; \
;; \
*) \
echo "Unsupported arch: ${ARCH}"; \
@@ -72,8 +72,8 @@ RUN set -eux; \
SCC_SIZE="50m"; \
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \
- TOMCAT_CHECKSUM="06e239d15ff7b72017c1d0752ddb1be4651374f7c1391631ec5619f4981cb2911267bc6b044d6c71a2a74738f70d433b96418951439848121f1d874862ddd3de"; \
- TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.85/bin/apache-tomcat-9.0.85.tar.gz"; \
+ TOMCAT_CHECKSUM="aaa2851bdc7a2476b6793e95174965c1c861531f161d8a138e87f8532b1af4d4b3d92dd1ae890614a692e5f13fb2e6946a1ada888f21e9d7db1964616b4181f0"; \
+ TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.89/bin/apache-tomcat-9.0.89.tar.gz"; \
\
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \
diff --git a/ibm-semeru-runtimes_open-8-jdk-jammy/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-8-jdk-jammy/Dockerfile.open.releases.full
index 27c4599..ac7a47e 100644
--- a/ibm-semeru-runtimes_open-8-jdk-jammy/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-8-jdk-jammy/Dockerfile.open.releases.full
@@ -23,26 +23,26 @@ RUN apt-get update \
&& locale-gen en_US.UTF-8 \
&& rm -rf /var/lib/apt/lists/*
-ENV JAVA_VERSION jdk8u402-b06_openj9-0.43.0
+ENV JAVA_VERSION jdk8u412-b08_openj9-0.44.0
RUN set -eux; \
ARCH="$(dpkg --print-architecture)"; \
case "${ARCH}" in \
aarch64|arm64) \
- ESUM='eee642d945d249f9aa2bba0b788a7d79d4989a32205b18e6bb075b50e77d700a'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u402-b06_openj9-0.43.0/ibm-semeru-open-jdk_aarch64_linux_8u402b06_openj9-0.43.0.tar.gz'; \
+ ESUM='2baa88e7ed0ea9f72310fb4adfe99ee06fdb514cc04517b0e0be3c0646493ea3'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u412-b08_openj9-0.44.0/ibm-semeru-open-jdk_aarch64_linux_8u412b08_openj9-0.44.0.tar.gz'; \
;; \
ppc64el|ppc64le) \
- ESUM='ebdc8bcf61a5efb53e7043130fbaf88d5d97498225fee0c0bc0b6e9ace65d768'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u402-b06_openj9-0.43.0/ibm-semeru-open-jdk_ppc64le_linux_8u402b06_openj9-0.43.0.tar.gz'; \
+ ESUM='6b4b2bca348877aaf8941f021a989d647b9575fb84b4ef001abf7182787772ff'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u412-b08_openj9-0.44.0/ibm-semeru-open-jdk_ppc64le_linux_8u412b08_openj9-0.44.0.tar.gz'; \
;; \
amd64|x86_64) \
- ESUM='6e5f623ca42d1f37e769a44b26641a6b0382145f5eb8d9c3ff980e6ebcd7ac2e'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u402-b06_openj9-0.43.0/ibm-semeru-open-jdk_x64_linux_8u402b06_openj9-0.43.0.tar.gz'; \
+ ESUM='85af2c57078aab240ce31ba3f7a8e86696ff5bdf4c30f3c37f107986f07b23a6'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u412-b08_openj9-0.44.0/ibm-semeru-open-jdk_x64_linux_8u412b08_openj9-0.44.0.tar.gz'; \
;; \
s390x) \
- ESUM='f5d92d3f04074516d31b1aeea8de16c44db65bf27b70da626f1d16a116299142'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u402-b06_openj9-0.43.0/ibm-semeru-open-jdk_s390x_linux_8u402b06_openj9-0.43.0.tar.gz'; \
+ ESUM='70afb4cdc8b95b1eb2c2b6cc4b0b9cec705b41ce328a7900fb72dc83e6eee01f'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u412-b08_openj9-0.44.0/ibm-semeru-open-jdk_s390x_linux_8u412b08_openj9-0.44.0.tar.gz'; \
;; \
*) \
echo "Unsupported arch: ${ARCH}"; \
@@ -71,8 +71,8 @@ RUN set -eux; \
SCC_SIZE="50m"; \
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \
- TOMCAT_CHECKSUM="06e239d15ff7b72017c1d0752ddb1be4651374f7c1391631ec5619f4981cb2911267bc6b044d6c71a2a74738f70d433b96418951439848121f1d874862ddd3de"; \
- TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.85/bin/apache-tomcat-9.0.85.tar.gz"; \
+ TOMCAT_CHECKSUM="aaa2851bdc7a2476b6793e95174965c1c861531f161d8a138e87f8532b1af4d4b3d92dd1ae890614a692e5f13fb2e6946a1ada888f21e9d7db1964616b4181f0"; \
+ TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.89/bin/apache-tomcat-9.0.89.tar.gz"; \
\
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \
diff --git a/ibm-semeru-runtimes_open-8-jre-centos7/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-8-jre-centos7/Dockerfile.open.releases.full
index 81e7dfd..977cd7c 100644
--- a/ibm-semeru-runtimes_open-8-jre-centos7/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-8-jre-centos7/Dockerfile.open.releases.full
@@ -20,26 +20,26 @@ ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
RUN yum install -y tzdata openssl curl ca-certificates fontconfig gzip tar \
&& yum clean all
-ENV JAVA_VERSION jdk8u402-b06_openj9-0.43.0
+ENV JAVA_VERSION jdk8u412-b08_openj9-0.44.0
RUN set -eux; \
ARCH="$(uname -m)"; \
case "${ARCH}" in \
aarch64|arm64)\
- ESUM='4921671d26754483f096007cfb537922f1b190ca471aaebda6eccdefe91f7fb0'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u402-b06_openj9-0.43.0/ibm-semeru-open-jre_aarch64_linux_8u402b06_openj9-0.43.0.tar.gz'; \
+ ESUM='08a41a48b79881590d65a09c62c56d8bcd9b8453f03420bcfd5dd3165bbba3c1'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u412-b08_openj9-0.44.0/ibm-semeru-open-jre_aarch64_linux_8u412b08_openj9-0.44.0.tar.gz'; \
;; \
ppc64el|ppc64le) \
- ESUM='d0efc1cee9a57bdb623e4f976aaa2ca96b7b724631521d9e387e543b2c57288b'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u402-b06_openj9-0.43.0/ibm-semeru-open-jre_ppc64le_linux_8u402b06_openj9-0.43.0.tar.gz'; \
+ ESUM='a15f8041250126c9f20e52f8877fea80e20219635811b59bf537bce756f75a09'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u412-b08_openj9-0.44.0/ibm-semeru-open-jre_ppc64le_linux_8u412b08_openj9-0.44.0.tar.gz'; \
;; \
amd64|x86_64) \
- ESUM='6f2e0e977f833ad9b2d85e97e568aa57c658eea3f096a1544d72e70f94e55f73'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u402-b06_openj9-0.43.0/ibm-semeru-open-jre_x64_linux_8u402b06_openj9-0.43.0.tar.gz'; \
+ ESUM='ac5022b52b33b22c51d8370655f6157fd999e5e24c6525f91d1e778f34abcb8b'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u412-b08_openj9-0.44.0/ibm-semeru-open-jre_x64_linux_8u412b08_openj9-0.44.0.tar.gz'; \
;; \
s390x) \
- ESUM='2c4cf63ea82f8d1fc84394b83c6c1e93fb30c6a83c8635ee648885f81b5d8d31'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u402-b06_openj9-0.43.0/ibm-semeru-open-jre_s390x_linux_8u402b06_openj9-0.43.0.tar.gz'; \
+ ESUM='2c5bb442ebf64d695f78c10687477ee15bf7037332ac6cbd8d71d763593f64dc'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u412-b08_openj9-0.44.0/ibm-semeru-open-jre_s390x_linux_8u412b08_openj9-0.44.0.tar.gz'; \
;; \
*) \
echo "Unsupported arch: ${ARCH}"; \
@@ -68,8 +68,8 @@ RUN set -eux; \
SCC_SIZE="50m"; \
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \
- TOMCAT_CHECKSUM="06e239d15ff7b72017c1d0752ddb1be4651374f7c1391631ec5619f4981cb2911267bc6b044d6c71a2a74738f70d433b96418951439848121f1d874862ddd3de"; \
- TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.85/bin/apache-tomcat-9.0.85.tar.gz"; \
+ TOMCAT_CHECKSUM="aaa2851bdc7a2476b6793e95174965c1c861531f161d8a138e87f8532b1af4d4b3d92dd1ae890614a692e5f13fb2e6946a1ada888f21e9d7db1964616b4181f0"; \
+ TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.89/bin/apache-tomcat-9.0.89.tar.gz"; \
\
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \
diff --git a/ibm-semeru-runtimes_open-8-jre-focal/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-8-jre-focal/Dockerfile.open.releases.full
index a26a849..3582cff 100644
--- a/ibm-semeru-runtimes_open-8-jre-focal/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-8-jre-focal/Dockerfile.open.releases.full
@@ -23,26 +23,26 @@ RUN apt-get update \
&& locale-gen en_US.UTF-8 \
&& rm -rf /var/lib/apt/lists/*
-ENV JAVA_VERSION jdk8u402-b06_openj9-0.43.0
+ENV JAVA_VERSION jdk8u412-b08_openj9-0.44.0
RUN set -eux; \
ARCH="$(dpkg --print-architecture)"; \
case "${ARCH}" in \
aarch64|arm64)\
- ESUM='4921671d26754483f096007cfb537922f1b190ca471aaebda6eccdefe91f7fb0'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u402-b06_openj9-0.43.0/ibm-semeru-open-jre_aarch64_linux_8u402b06_openj9-0.43.0.tar.gz'; \
+ ESUM='08a41a48b79881590d65a09c62c56d8bcd9b8453f03420bcfd5dd3165bbba3c1'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u412-b08_openj9-0.44.0/ibm-semeru-open-jre_aarch64_linux_8u412b08_openj9-0.44.0.tar.gz'; \
;; \
ppc64el|ppc64le) \
- ESUM='d0efc1cee9a57bdb623e4f976aaa2ca96b7b724631521d9e387e543b2c57288b'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u402-b06_openj9-0.43.0/ibm-semeru-open-jre_ppc64le_linux_8u402b06_openj9-0.43.0.tar.gz'; \
+ ESUM='a15f8041250126c9f20e52f8877fea80e20219635811b59bf537bce756f75a09'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u412-b08_openj9-0.44.0/ibm-semeru-open-jre_ppc64le_linux_8u412b08_openj9-0.44.0.tar.gz'; \
;; \
amd64|x86_64) \
- ESUM='6f2e0e977f833ad9b2d85e97e568aa57c658eea3f096a1544d72e70f94e55f73'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u402-b06_openj9-0.43.0/ibm-semeru-open-jre_x64_linux_8u402b06_openj9-0.43.0.tar.gz'; \
+ ESUM='ac5022b52b33b22c51d8370655f6157fd999e5e24c6525f91d1e778f34abcb8b'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u412-b08_openj9-0.44.0/ibm-semeru-open-jre_x64_linux_8u412b08_openj9-0.44.0.tar.gz'; \
;; \
s390x) \
- ESUM='2c4cf63ea82f8d1fc84394b83c6c1e93fb30c6a83c8635ee648885f81b5d8d31'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u402-b06_openj9-0.43.0/ibm-semeru-open-jre_s390x_linux_8u402b06_openj9-0.43.0.tar.gz'; \
+ ESUM='2c5bb442ebf64d695f78c10687477ee15bf7037332ac6cbd8d71d763593f64dc'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u412-b08_openj9-0.44.0/ibm-semeru-open-jre_s390x_linux_8u412b08_openj9-0.44.0.tar.gz'; \
;; \
*) \
echo "Unsupported arch: ${ARCH}"; \
@@ -71,8 +71,8 @@ RUN set -eux; \
SCC_SIZE="50m"; \
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \
- TOMCAT_CHECKSUM="06e239d15ff7b72017c1d0752ddb1be4651374f7c1391631ec5619f4981cb2911267bc6b044d6c71a2a74738f70d433b96418951439848121f1d874862ddd3de"; \
- TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.85/bin/apache-tomcat-9.0.85.tar.gz"; \
+ TOMCAT_CHECKSUM="aaa2851bdc7a2476b6793e95174965c1c861531f161d8a138e87f8532b1af4d4b3d92dd1ae890614a692e5f13fb2e6946a1ada888f21e9d7db1964616b4181f0"; \
+ TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.89/bin/apache-tomcat-9.0.89.tar.gz"; \
\
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \
diff --git a/ibm-semeru-runtimes_open-8-jre-jammy/Dockerfile.open.releases.full b/ibm-semeru-runtimes_open-8-jre-jammy/Dockerfile.open.releases.full
index 42c8b37..b8ab269 100644
--- a/ibm-semeru-runtimes_open-8-jre-jammy/Dockerfile.open.releases.full
+++ b/ibm-semeru-runtimes_open-8-jre-jammy/Dockerfile.open.releases.full
@@ -23,26 +23,26 @@ RUN apt-get update \
&& locale-gen en_US.UTF-8 \
&& rm -rf /var/lib/apt/lists/*
-ENV JAVA_VERSION jdk8u402-b06_openj9-0.43.0
+ENV JAVA_VERSION jdk8u412-b08_openj9-0.44.0
RUN set -eux; \
ARCH="$(dpkg --print-architecture)"; \
case "${ARCH}" in \
aarch64|arm64)\
- ESUM='4921671d26754483f096007cfb537922f1b190ca471aaebda6eccdefe91f7fb0'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u402-b06_openj9-0.43.0/ibm-semeru-open-jre_aarch64_linux_8u402b06_openj9-0.43.0.tar.gz'; \
+ ESUM='08a41a48b79881590d65a09c62c56d8bcd9b8453f03420bcfd5dd3165bbba3c1'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u412-b08_openj9-0.44.0/ibm-semeru-open-jre_aarch64_linux_8u412b08_openj9-0.44.0.tar.gz'; \
;; \
ppc64el|ppc64le) \
- ESUM='d0efc1cee9a57bdb623e4f976aaa2ca96b7b724631521d9e387e543b2c57288b'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u402-b06_openj9-0.43.0/ibm-semeru-open-jre_ppc64le_linux_8u402b06_openj9-0.43.0.tar.gz'; \
+ ESUM='a15f8041250126c9f20e52f8877fea80e20219635811b59bf537bce756f75a09'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u412-b08_openj9-0.44.0/ibm-semeru-open-jre_ppc64le_linux_8u412b08_openj9-0.44.0.tar.gz'; \
;; \
amd64|x86_64) \
- ESUM='6f2e0e977f833ad9b2d85e97e568aa57c658eea3f096a1544d72e70f94e55f73'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u402-b06_openj9-0.43.0/ibm-semeru-open-jre_x64_linux_8u402b06_openj9-0.43.0.tar.gz'; \
+ ESUM='ac5022b52b33b22c51d8370655f6157fd999e5e24c6525f91d1e778f34abcb8b'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u412-b08_openj9-0.44.0/ibm-semeru-open-jre_x64_linux_8u412b08_openj9-0.44.0.tar.gz'; \
;; \
s390x) \
- ESUM='2c4cf63ea82f8d1fc84394b83c6c1e93fb30c6a83c8635ee648885f81b5d8d31'; \
- BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u402-b06_openj9-0.43.0/ibm-semeru-open-jre_s390x_linux_8u402b06_openj9-0.43.0.tar.gz'; \
+ ESUM='2c5bb442ebf64d695f78c10687477ee15bf7037332ac6cbd8d71d763593f64dc'; \
+ BINARY_URL='https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u412-b08_openj9-0.44.0/ibm-semeru-open-jre_s390x_linux_8u412b08_openj9-0.44.0.tar.gz'; \
;; \
*) \
echo "Unsupported arch: ${ARCH}"; \
@@ -71,8 +71,8 @@ RUN set -eux; \
SCC_SIZE="50m"; \
DOWNLOAD_PATH_TOMCAT=/tmp/tomcat; \
INSTALL_PATH_TOMCAT=/opt/tomcat-home; \
- TOMCAT_CHECKSUM="06e239d15ff7b72017c1d0752ddb1be4651374f7c1391631ec5619f4981cb2911267bc6b044d6c71a2a74738f70d433b96418951439848121f1d874862ddd3de"; \
- TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.85/bin/apache-tomcat-9.0.85.tar.gz"; \
+ TOMCAT_CHECKSUM="aaa2851bdc7a2476b6793e95174965c1c861531f161d8a138e87f8532b1af4d4b3d92dd1ae890614a692e5f13fb2e6946a1ada888f21e9d7db1964616b4181f0"; \
+ TOMCAT_DWNLD_URL="https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.89/bin/apache-tomcat-9.0.89.tar.gz"; \
\
mkdir -p "${DOWNLOAD_PATH_TOMCAT}" "${INSTALL_PATH_TOMCAT}"; \
curl -LfsSo "${DOWNLOAD_PATH_TOMCAT}"/tomcat.tar.gz "${TOMCAT_DWNLD_URL}"; \Relevant Maintainers:
|
|
@tianon Semeru 22 files are updated with requested changes, thanks !! |
This update contains :