From fb314957163ab9a7061648b0de748eab60bdb29e Mon Sep 17 00:00:00 2001 From: SapMachine Date: Wed, 16 Oct 2024 14:49:19 +0200 Subject: [PATCH] Update Dockerfiles for SapMachine 23.0.1 --- dockerfiles/23/README.md | 2 +- .../23/distroless/debian11/debug-nonroot/Dockerfile | 10 +++++----- dockerfiles/23/distroless/debian11/debug/Dockerfile | 10 +++++----- dockerfiles/23/distroless/debian11/latest/Dockerfile | 10 +++++----- dockerfiles/23/distroless/debian11/nonroot/Dockerfile | 10 +++++----- .../23/gardenlinux/1592/jdk-headless/Dockerfile | 2 +- dockerfiles/23/gardenlinux/1592/jdk/Dockerfile | 2 +- .../23/gardenlinux/1592/jre-headless/Dockerfile | 2 +- dockerfiles/23/gardenlinux/1592/jre/Dockerfile | 2 +- dockerfiles/23/ubuntu/20_04/jdk-headless/Dockerfile | 2 +- dockerfiles/23/ubuntu/20_04/jdk/Dockerfile | 2 +- dockerfiles/23/ubuntu/20_04/jre-headless/Dockerfile | 2 +- dockerfiles/23/ubuntu/20_04/jre/Dockerfile | 2 +- dockerfiles/23/ubuntu/22_04/jdk-headless/Dockerfile | 2 +- dockerfiles/23/ubuntu/22_04/jdk/Dockerfile | 2 +- dockerfiles/23/ubuntu/22_04/jre-headless/Dockerfile | 2 +- dockerfiles/23/ubuntu/22_04/jre/Dockerfile | 2 +- dockerfiles/23/ubuntu/24_04/jdk-headless/Dockerfile | 2 +- dockerfiles/23/ubuntu/24_04/jdk/Dockerfile | 2 +- dockerfiles/23/ubuntu/24_04/jre-headless/Dockerfile | 2 +- dockerfiles/23/ubuntu/24_04/jre/Dockerfile | 2 +- 21 files changed, 37 insertions(+), 37 deletions(-) diff --git a/dockerfiles/23/README.md b/dockerfiles/23/README.md index 35858295ad2..d8a69769c8e 100644 --- a/dockerfiles/23/README.md +++ b/dockerfiles/23/README.md @@ -1,7 +1,7 @@ ### Overview -The dockerfiles in this subdirectory define images for consuming the stable release 23 (version: 23) of the SapMachine Java Virtual Machine (JVM). +The dockerfiles in this subdirectory define images for consuming the stable release 23 (version: 23.0.1) of the SapMachine Java Virtual Machine (JVM). SapMachine is an OpenJDK based JVM that is built, quality tested and long-term supported by SAP. It is the default JVM on the [SAP Business Technology Platform](https://www.sap.com/products/technology-platform.html) and it is also supported as a [Standard JRE](https://github.com/cloudfoundry/java-buildpack/blob/master/docs/jre-sap_machine_jre.md) in the [Cloud Foundry Java Build Pack](https://github.com/cloudfoundry/java-buildpack). diff --git a/dockerfiles/23/distroless/debian11/debug-nonroot/Dockerfile b/dockerfiles/23/distroless/debian11/debug-nonroot/Dockerfile index a0c2fb7dd4a..8a2307d7894 100644 --- a/dockerfiles/23/distroless/debian11/debug-nonroot/Dockerfile +++ b/dockerfiles/23/distroless/debian11/debug-nonroot/Dockerfile @@ -7,13 +7,13 @@ RUN apt-get update && apt-get -y --no-install-recommends install ca-certificates RUN dpkgArch="$(dpkg --print-architecture)"; \ case "${dpkgArch}" in \ 'amd64') \ - url='https://github.com/SAP/SapMachine/releases/download/sapmachine-23/sapmachine-jdk-23_linux-x64_bin.tar.gz'; \ + url='https://github.com/SAP/SapMachine/releases/download/sapmachine-23.0.1/sapmachine-jdk-23.0.1_linux-x64_bin.tar.gz'; \ ;; \ 'arm64') \ - url='https://github.com/SAP/SapMachine/releases/download/sapmachine-23/sapmachine-jdk-23_linux-aarch64_bin.tar.gz'; \ + url='https://github.com/SAP/SapMachine/releases/download/sapmachine-23.0.1/sapmachine-jdk-23.0.1_linux-aarch64_bin.tar.gz'; \ ;; \ 'ppc64el') \ - url='https://github.com/SAP/SapMachine/releases/download/sapmachine-23/sapmachine-jdk-23_linux-ppc64le_bin.tar.gz'; \ + url='https://github.com/SAP/SapMachine/releases/download/sapmachine-23.0.1/sapmachine-jdk-23.0.1_linux-ppc64le_bin.tar.gz'; \ ;; \ *) echo >&2 "error: unsupported architecture '$dpkgArch'"; exit 1 ;; \ esac; \ @@ -23,7 +23,7 @@ COPY --from=distroless / /distroless RUN tar xzf sapmachine.tar.gz && \ rm -rf /distroless/etc/java-23-openjdk /distroless/usr/lib/jvm/java-23-openjdk-amd64 && \ - mv sapmachine-jdk-23 /distroless/usr/lib/jvm/java-23-openjdk-amd64 + mv sapmachine-jdk-23.0.1 /distroless/usr/lib/jvm/java-23-openjdk-amd64 FROM scratch COPY --from=builder /distroless / @@ -31,6 +31,6 @@ COPY --from=builder /distroless / ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/busybox ENV SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt ENV LANG=C.UTF-8 -ENV JAVA_VERSION=23 +ENV JAVA_VERSION=23.0.1 ENTRYPOINT [ "/usr/bin/java", "-jar" ] diff --git a/dockerfiles/23/distroless/debian11/debug/Dockerfile b/dockerfiles/23/distroless/debian11/debug/Dockerfile index ab55524ef47..da006f9ab06 100644 --- a/dockerfiles/23/distroless/debian11/debug/Dockerfile +++ b/dockerfiles/23/distroless/debian11/debug/Dockerfile @@ -7,13 +7,13 @@ RUN apt-get update && apt-get -y --no-install-recommends install ca-certificates RUN dpkgArch="$(dpkg --print-architecture)"; \ case "${dpkgArch}" in \ 'amd64') \ - url='https://github.com/SAP/SapMachine/releases/download/sapmachine-23/sapmachine-jdk-23_linux-x64_bin.tar.gz'; \ + url='https://github.com/SAP/SapMachine/releases/download/sapmachine-23.0.1/sapmachine-jdk-23.0.1_linux-x64_bin.tar.gz'; \ ;; \ 'arm64') \ - url='https://github.com/SAP/SapMachine/releases/download/sapmachine-23/sapmachine-jdk-23_linux-aarch64_bin.tar.gz'; \ + url='https://github.com/SAP/SapMachine/releases/download/sapmachine-23.0.1/sapmachine-jdk-23.0.1_linux-aarch64_bin.tar.gz'; \ ;; \ 'ppc64el') \ - url='https://github.com/SAP/SapMachine/releases/download/sapmachine-23/sapmachine-jdk-23_linux-ppc64le_bin.tar.gz'; \ + url='https://github.com/SAP/SapMachine/releases/download/sapmachine-23.0.1/sapmachine-jdk-23.0.1_linux-ppc64le_bin.tar.gz'; \ ;; \ *) echo >&2 "error: unsupported architecture '$dpkgArch'"; exit 1 ;; \ esac; \ @@ -23,7 +23,7 @@ COPY --from=distroless / /distroless RUN tar xzf sapmachine.tar.gz && \ rm -rf /distroless/etc/java-23-openjdk /distroless/usr/lib/jvm/java-23-openjdk-amd64 && \ - mv sapmachine-jdk-23 /distroless/usr/lib/jvm/java-23-openjdk-amd64 + mv sapmachine-jdk-23.0.1 /distroless/usr/lib/jvm/java-23-openjdk-amd64 FROM scratch COPY --from=builder /distroless / @@ -31,6 +31,6 @@ COPY --from=builder /distroless / ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/busybox ENV SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt ENV LANG=C.UTF-8 -ENV JAVA_VERSION=23 +ENV JAVA_VERSION=23.0.1 ENTRYPOINT [ "/usr/bin/java", "-jar" ] diff --git a/dockerfiles/23/distroless/debian11/latest/Dockerfile b/dockerfiles/23/distroless/debian11/latest/Dockerfile index 48f4873c244..2a19509448c 100644 --- a/dockerfiles/23/distroless/debian11/latest/Dockerfile +++ b/dockerfiles/23/distroless/debian11/latest/Dockerfile @@ -7,13 +7,13 @@ RUN apt-get update && apt-get -y --no-install-recommends install ca-certificates RUN dpkgArch="$(dpkg --print-architecture)"; \ case "${dpkgArch}" in \ 'amd64') \ - url='https://github.com/SAP/SapMachine/releases/download/sapmachine-23/sapmachine-jre-23_linux-x64_bin.tar.gz'; \ + url='https://github.com/SAP/SapMachine/releases/download/sapmachine-23.0.1/sapmachine-jre-23.0.1_linux-x64_bin.tar.gz'; \ ;; \ 'arm64') \ - url='https://github.com/SAP/SapMachine/releases/download/sapmachine-23/sapmachine-jre-23_linux-aarch64_bin.tar.gz'; \ + url='https://github.com/SAP/SapMachine/releases/download/sapmachine-23.0.1/sapmachine-jre-23.0.1_linux-aarch64_bin.tar.gz'; \ ;; \ 'ppc64el') \ - url='https://github.com/SAP/SapMachine/releases/download/sapmachine-23/sapmachine-jre-23_linux-ppc64le_bin.tar.gz'; \ + url='https://github.com/SAP/SapMachine/releases/download/sapmachine-23.0.1/sapmachine-jre-23.0.1_linux-ppc64le_bin.tar.gz'; \ ;; \ *) echo >&2 "error: unsupported architecture '$dpkgArch'"; exit 1 ;; \ esac; \ @@ -23,7 +23,7 @@ COPY --from=distroless / /distroless RUN tar xzf sapmachine.tar.gz && \ rm -rf /distroless/etc/java-23-openjdk /distroless/usr/lib/jvm/java-23-openjdk-amd64 && \ - mv sapmachine-jre-23 /distroless/usr/lib/jvm/java-23-openjdk-amd64 + mv sapmachine-jre-23.0.1 /distroless/usr/lib/jvm/java-23-openjdk-amd64 FROM scratch COPY --from=builder /distroless / @@ -31,6 +31,6 @@ COPY --from=builder /distroless / ENV SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt ENV LANG=C.UTF-8 -ENV JAVA_VERSION=23 +ENV JAVA_VERSION=23.0.1 ENTRYPOINT [ "/usr/bin/java", "-jar" ] diff --git a/dockerfiles/23/distroless/debian11/nonroot/Dockerfile b/dockerfiles/23/distroless/debian11/nonroot/Dockerfile index b1b1481efa0..b65227e20b8 100644 --- a/dockerfiles/23/distroless/debian11/nonroot/Dockerfile +++ b/dockerfiles/23/distroless/debian11/nonroot/Dockerfile @@ -7,13 +7,13 @@ RUN apt-get update && apt-get -y --no-install-recommends install ca-certificates RUN dpkgArch="$(dpkg --print-architecture)"; \ case "${dpkgArch}" in \ 'amd64') \ - url='https://github.com/SAP/SapMachine/releases/download/sapmachine-23/sapmachine-jre-23_linux-x64_bin.tar.gz'; \ + url='https://github.com/SAP/SapMachine/releases/download/sapmachine-23.0.1/sapmachine-jre-23.0.1_linux-x64_bin.tar.gz'; \ ;; \ 'arm64') \ - url='https://github.com/SAP/SapMachine/releases/download/sapmachine-23/sapmachine-jre-23_linux-aarch64_bin.tar.gz'; \ + url='https://github.com/SAP/SapMachine/releases/download/sapmachine-23.0.1/sapmachine-jre-23.0.1_linux-aarch64_bin.tar.gz'; \ ;; \ 'ppc64el') \ - url='https://github.com/SAP/SapMachine/releases/download/sapmachine-23/sapmachine-jre-23_linux-ppc64le_bin.tar.gz'; \ + url='https://github.com/SAP/SapMachine/releases/download/sapmachine-23.0.1/sapmachine-jre-23.0.1_linux-ppc64le_bin.tar.gz'; \ ;; \ *) echo >&2 "error: unsupported architecture '$dpkgArch'"; exit 1 ;; \ esac; \ @@ -23,7 +23,7 @@ COPY --from=distroless / /distroless RUN tar xzf sapmachine.tar.gz && \ rm -rf /distroless/etc/java-23-openjdk /distroless/usr/lib/jvm/java-23-openjdk-amd64 && \ - mv sapmachine-jre-23 /distroless/usr/lib/jvm/java-23-openjdk-amd64 + mv sapmachine-jre-23.0.1 /distroless/usr/lib/jvm/java-23-openjdk-amd64 FROM scratch COPY --from=builder /distroless / @@ -31,6 +31,6 @@ COPY --from=builder /distroless / ENV SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt ENV LANG=C.UTF-8 -ENV JAVA_VERSION=23 +ENV JAVA_VERSION=23.0.1 ENTRYPOINT [ "/usr/bin/java", "-jar" ] diff --git a/dockerfiles/23/gardenlinux/1592/jdk-headless/Dockerfile b/dockerfiles/23/gardenlinux/1592/jdk-headless/Dockerfile index fbac512fe68..8a75251088a 100644 --- a/dockerfiles/23/gardenlinux/1592/jdk-headless/Dockerfile +++ b/dockerfiles/23/gardenlinux/1592/jdk-headless/Dockerfile @@ -6,7 +6,7 @@ RUN apt-get update \ && chmod 644 /etc/apt/trusted.gpg.d/sapmachine.asc \ && echo "deb https://dist.sapmachine.io/debian/$(dpkg --print-architecture)/ ./" > /etc/apt/sources.list.d/sapmachine.list \ && apt-get update \ - && apt-get -y --no-install-recommends install sapmachine-23-jdk-headless=23 \ + && apt-get -y --no-install-recommends install sapmachine-23-jdk-headless=23.0.1 \ && apt-get remove -y --purge --autoremove wget \ && rm -rf /var/lib/apt/lists/* diff --git a/dockerfiles/23/gardenlinux/1592/jdk/Dockerfile b/dockerfiles/23/gardenlinux/1592/jdk/Dockerfile index 0b12f10a577..5554c48bb93 100644 --- a/dockerfiles/23/gardenlinux/1592/jdk/Dockerfile +++ b/dockerfiles/23/gardenlinux/1592/jdk/Dockerfile @@ -6,7 +6,7 @@ RUN apt-get update \ && chmod 644 /etc/apt/trusted.gpg.d/sapmachine.asc \ && echo "deb https://dist.sapmachine.io/debian/$(dpkg --print-architecture)/ ./" > /etc/apt/sources.list.d/sapmachine.list \ && apt-get update \ - && apt-get -y --no-install-recommends install sapmachine-23-jdk=23 \ + && apt-get -y --no-install-recommends install sapmachine-23-jdk=23.0.1 \ && apt-get remove -y --purge --autoremove wget \ && rm -rf /var/lib/apt/lists/* diff --git a/dockerfiles/23/gardenlinux/1592/jre-headless/Dockerfile b/dockerfiles/23/gardenlinux/1592/jre-headless/Dockerfile index e81ed28bf9a..670c964f427 100644 --- a/dockerfiles/23/gardenlinux/1592/jre-headless/Dockerfile +++ b/dockerfiles/23/gardenlinux/1592/jre-headless/Dockerfile @@ -6,7 +6,7 @@ RUN apt-get update \ && chmod 644 /etc/apt/trusted.gpg.d/sapmachine.asc \ && echo "deb https://dist.sapmachine.io/debian/$(dpkg --print-architecture)/ ./" > /etc/apt/sources.list.d/sapmachine.list \ && apt-get update \ - && apt-get -y --no-install-recommends install sapmachine-23-jre-headless=23 \ + && apt-get -y --no-install-recommends install sapmachine-23-jre-headless=23.0.1 \ && apt-get remove -y --purge --autoremove wget \ && rm -rf /var/lib/apt/lists/* diff --git a/dockerfiles/23/gardenlinux/1592/jre/Dockerfile b/dockerfiles/23/gardenlinux/1592/jre/Dockerfile index 676f20093b2..7bbb6df0c01 100644 --- a/dockerfiles/23/gardenlinux/1592/jre/Dockerfile +++ b/dockerfiles/23/gardenlinux/1592/jre/Dockerfile @@ -6,7 +6,7 @@ RUN apt-get update \ && chmod 644 /etc/apt/trusted.gpg.d/sapmachine.asc \ && echo "deb https://dist.sapmachine.io/debian/$(dpkg --print-architecture)/ ./" > /etc/apt/sources.list.d/sapmachine.list \ && apt-get update \ - && apt-get -y --no-install-recommends install sapmachine-23-jre=23 \ + && apt-get -y --no-install-recommends install sapmachine-23-jre=23.0.1 \ && apt-get remove -y --purge --autoremove wget \ && rm -rf /var/lib/apt/lists/* diff --git a/dockerfiles/23/ubuntu/20_04/jdk-headless/Dockerfile b/dockerfiles/23/ubuntu/20_04/jdk-headless/Dockerfile index 3ae1b6af7a3..20c57b06775 100644 --- a/dockerfiles/23/ubuntu/20_04/jdk-headless/Dockerfile +++ b/dockerfiles/23/ubuntu/20_04/jdk-headless/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get update \ && chmod 644 /etc/apt/trusted.gpg.d/sapmachine.gpg \ && echo "deb http://dist.sapmachine.io/debian/$(dpkg --print-architecture)/ ./" > /etc/apt/sources.list.d/sapmachine.list \ && apt-get update \ - && apt-get -y --no-install-recommends install sapmachine-23-jdk-headless=23 \ + && apt-get -y --no-install-recommends install sapmachine-23-jdk-headless=23.0.1 \ && apt-get remove -y --purge --autoremove ca-certificates gnupg \ && rm -rf "$GNUPGHOME" /var/lib/apt/lists/* diff --git a/dockerfiles/23/ubuntu/20_04/jdk/Dockerfile b/dockerfiles/23/ubuntu/20_04/jdk/Dockerfile index a09b4867568..0e433649a7c 100644 --- a/dockerfiles/23/ubuntu/20_04/jdk/Dockerfile +++ b/dockerfiles/23/ubuntu/20_04/jdk/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get update \ && chmod 644 /etc/apt/trusted.gpg.d/sapmachine.gpg \ && echo "deb http://dist.sapmachine.io/debian/$(dpkg --print-architecture)/ ./" > /etc/apt/sources.list.d/sapmachine.list \ && apt-get update \ - && apt-get -y --no-install-recommends install sapmachine-23-jdk=23 \ + && apt-get -y --no-install-recommends install sapmachine-23-jdk=23.0.1 \ && apt-get remove -y --purge --autoremove ca-certificates gnupg \ && rm -rf "$GNUPGHOME" /var/lib/apt/lists/* diff --git a/dockerfiles/23/ubuntu/20_04/jre-headless/Dockerfile b/dockerfiles/23/ubuntu/20_04/jre-headless/Dockerfile index 47a36f120b2..c510a6a4190 100644 --- a/dockerfiles/23/ubuntu/20_04/jre-headless/Dockerfile +++ b/dockerfiles/23/ubuntu/20_04/jre-headless/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get update \ && chmod 644 /etc/apt/trusted.gpg.d/sapmachine.gpg \ && echo "deb http://dist.sapmachine.io/debian/$(dpkg --print-architecture)/ ./" > /etc/apt/sources.list.d/sapmachine.list \ && apt-get update \ - && apt-get -y --no-install-recommends install sapmachine-23-jre-headless=23 \ + && apt-get -y --no-install-recommends install sapmachine-23-jre-headless=23.0.1 \ && apt-get remove -y --purge --autoremove ca-certificates gnupg \ && rm -rf "$GNUPGHOME" /var/lib/apt/lists/* diff --git a/dockerfiles/23/ubuntu/20_04/jre/Dockerfile b/dockerfiles/23/ubuntu/20_04/jre/Dockerfile index 05f28b60610..6ae8555427a 100644 --- a/dockerfiles/23/ubuntu/20_04/jre/Dockerfile +++ b/dockerfiles/23/ubuntu/20_04/jre/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get update \ && chmod 644 /etc/apt/trusted.gpg.d/sapmachine.gpg \ && echo "deb http://dist.sapmachine.io/debian/$(dpkg --print-architecture)/ ./" > /etc/apt/sources.list.d/sapmachine.list \ && apt-get update \ - && apt-get -y --no-install-recommends install sapmachine-23-jre=23 \ + && apt-get -y --no-install-recommends install sapmachine-23-jre=23.0.1 \ && apt-get remove -y --purge --autoremove ca-certificates gnupg \ && rm -rf "$GNUPGHOME" /var/lib/apt/lists/* diff --git a/dockerfiles/23/ubuntu/22_04/jdk-headless/Dockerfile b/dockerfiles/23/ubuntu/22_04/jdk-headless/Dockerfile index 0b472c65908..09967886921 100644 --- a/dockerfiles/23/ubuntu/22_04/jdk-headless/Dockerfile +++ b/dockerfiles/23/ubuntu/22_04/jdk-headless/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get update \ && chmod 644 /etc/apt/trusted.gpg.d/sapmachine.gpg \ && echo "deb http://dist.sapmachine.io/debian/$(dpkg --print-architecture)/ ./" > /etc/apt/sources.list.d/sapmachine.list \ && apt-get update \ - && apt-get -y --no-install-recommends install sapmachine-23-jdk-headless=23 \ + && apt-get -y --no-install-recommends install sapmachine-23-jdk-headless=23.0.1 \ && apt-get remove -y --purge --autoremove ca-certificates gnupg \ && rm -rf "$GNUPGHOME" /var/lib/apt/lists/* diff --git a/dockerfiles/23/ubuntu/22_04/jdk/Dockerfile b/dockerfiles/23/ubuntu/22_04/jdk/Dockerfile index 9a9c0e01286..d143f90b143 100644 --- a/dockerfiles/23/ubuntu/22_04/jdk/Dockerfile +++ b/dockerfiles/23/ubuntu/22_04/jdk/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get update \ && chmod 644 /etc/apt/trusted.gpg.d/sapmachine.gpg \ && echo "deb http://dist.sapmachine.io/debian/$(dpkg --print-architecture)/ ./" > /etc/apt/sources.list.d/sapmachine.list \ && apt-get update \ - && apt-get -y --no-install-recommends install sapmachine-23-jdk=23 \ + && apt-get -y --no-install-recommends install sapmachine-23-jdk=23.0.1 \ && apt-get remove -y --purge --autoremove ca-certificates gnupg \ && rm -rf "$GNUPGHOME" /var/lib/apt/lists/* diff --git a/dockerfiles/23/ubuntu/22_04/jre-headless/Dockerfile b/dockerfiles/23/ubuntu/22_04/jre-headless/Dockerfile index 8135e23e6b9..5f5e90cf7d1 100644 --- a/dockerfiles/23/ubuntu/22_04/jre-headless/Dockerfile +++ b/dockerfiles/23/ubuntu/22_04/jre-headless/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get update \ && chmod 644 /etc/apt/trusted.gpg.d/sapmachine.gpg \ && echo "deb http://dist.sapmachine.io/debian/$(dpkg --print-architecture)/ ./" > /etc/apt/sources.list.d/sapmachine.list \ && apt-get update \ - && apt-get -y --no-install-recommends install sapmachine-23-jre-headless=23 \ + && apt-get -y --no-install-recommends install sapmachine-23-jre-headless=23.0.1 \ && apt-get remove -y --purge --autoremove ca-certificates gnupg \ && rm -rf "$GNUPGHOME" /var/lib/apt/lists/* diff --git a/dockerfiles/23/ubuntu/22_04/jre/Dockerfile b/dockerfiles/23/ubuntu/22_04/jre/Dockerfile index a917ef5a226..a9731b80697 100644 --- a/dockerfiles/23/ubuntu/22_04/jre/Dockerfile +++ b/dockerfiles/23/ubuntu/22_04/jre/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get update \ && chmod 644 /etc/apt/trusted.gpg.d/sapmachine.gpg \ && echo "deb http://dist.sapmachine.io/debian/$(dpkg --print-architecture)/ ./" > /etc/apt/sources.list.d/sapmachine.list \ && apt-get update \ - && apt-get -y --no-install-recommends install sapmachine-23-jre=23 \ + && apt-get -y --no-install-recommends install sapmachine-23-jre=23.0.1 \ && apt-get remove -y --purge --autoremove ca-certificates gnupg \ && rm -rf "$GNUPGHOME" /var/lib/apt/lists/* diff --git a/dockerfiles/23/ubuntu/24_04/jdk-headless/Dockerfile b/dockerfiles/23/ubuntu/24_04/jdk-headless/Dockerfile index 3465967f33c..c7d2db2d632 100644 --- a/dockerfiles/23/ubuntu/24_04/jdk-headless/Dockerfile +++ b/dockerfiles/23/ubuntu/24_04/jdk-headless/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get update \ && chmod 644 /etc/apt/trusted.gpg.d/sapmachine.gpg \ && echo "deb http://dist.sapmachine.io/debian/$(dpkg --print-architecture)/ ./" > /etc/apt/sources.list.d/sapmachine.list \ && apt-get update \ - && apt-get -y --no-install-recommends install sapmachine-23-jdk-headless=23 \ + && apt-get -y --no-install-recommends install sapmachine-23-jdk-headless=23.0.1 \ && apt-get remove -y --purge --autoremove ca-certificates gnupg \ && rm -rf "$GNUPGHOME" /var/lib/apt/lists/* diff --git a/dockerfiles/23/ubuntu/24_04/jdk/Dockerfile b/dockerfiles/23/ubuntu/24_04/jdk/Dockerfile index 78f9530941f..bb110dac732 100644 --- a/dockerfiles/23/ubuntu/24_04/jdk/Dockerfile +++ b/dockerfiles/23/ubuntu/24_04/jdk/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get update \ && chmod 644 /etc/apt/trusted.gpg.d/sapmachine.gpg \ && echo "deb http://dist.sapmachine.io/debian/$(dpkg --print-architecture)/ ./" > /etc/apt/sources.list.d/sapmachine.list \ && apt-get update \ - && apt-get -y --no-install-recommends install sapmachine-23-jdk=23 \ + && apt-get -y --no-install-recommends install sapmachine-23-jdk=23.0.1 \ && apt-get remove -y --purge --autoremove ca-certificates gnupg \ && rm -rf "$GNUPGHOME" /var/lib/apt/lists/* diff --git a/dockerfiles/23/ubuntu/24_04/jre-headless/Dockerfile b/dockerfiles/23/ubuntu/24_04/jre-headless/Dockerfile index a30d6cd1d24..66085767f05 100644 --- a/dockerfiles/23/ubuntu/24_04/jre-headless/Dockerfile +++ b/dockerfiles/23/ubuntu/24_04/jre-headless/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get update \ && chmod 644 /etc/apt/trusted.gpg.d/sapmachine.gpg \ && echo "deb http://dist.sapmachine.io/debian/$(dpkg --print-architecture)/ ./" > /etc/apt/sources.list.d/sapmachine.list \ && apt-get update \ - && apt-get -y --no-install-recommends install sapmachine-23-jre-headless=23 \ + && apt-get -y --no-install-recommends install sapmachine-23-jre-headless=23.0.1 \ && apt-get remove -y --purge --autoremove ca-certificates gnupg \ && rm -rf "$GNUPGHOME" /var/lib/apt/lists/* diff --git a/dockerfiles/23/ubuntu/24_04/jre/Dockerfile b/dockerfiles/23/ubuntu/24_04/jre/Dockerfile index 39f25ea9951..a1ed09b2df0 100644 --- a/dockerfiles/23/ubuntu/24_04/jre/Dockerfile +++ b/dockerfiles/23/ubuntu/24_04/jre/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get update \ && chmod 644 /etc/apt/trusted.gpg.d/sapmachine.gpg \ && echo "deb http://dist.sapmachine.io/debian/$(dpkg --print-architecture)/ ./" > /etc/apt/sources.list.d/sapmachine.list \ && apt-get update \ - && apt-get -y --no-install-recommends install sapmachine-23-jre=23 \ + && apt-get -y --no-install-recommends install sapmachine-23-jre=23.0.1 \ && apt-get remove -y --purge --autoremove ca-certificates gnupg \ && rm -rf "$GNUPGHOME" /var/lib/apt/lists/*