Skip to content

Commit

Permalink
upgrade to final jdk 21
Browse files Browse the repository at this point in the history
  • Loading branch information
zyclonite committed Oct 11, 2023
1 parent 46abfa3 commit 82740d5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ RUN apt-get update && \
ARCH="$(dpkg --print-architecture)" && \
case "${ARCH}" in \
aarch64|arm64) \
ESUM='f541f545c0e8046c2b242a1701e5be4a7abda2ffbc150d7f96b6cd5571f17429'; \
BINARY_URL='https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21%2B35-ea-beta/OpenJDK21U-jdk_aarch64_linux_hotspot_ea_21-0-35.tar.gz'; \
ESUM='33e440c237438aa2e3866d84ead8d4e00dc0992d98d9fd0ee2fe48192f2dbc4b'; \
BINARY_URL='https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21%2B35/OpenJDK21U-jdk_aarch64_linux_hotspot_21_35.tar.gz'; \
;; \
amd64|i386:x86-64) \
ESUM='b6586c432948134387b801add3b46048e3fb58390d74eea80e00c539016a54e6'; \
BINARY_URL='https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21%2B35-ea-beta/OpenJDK21U-jdk_x64_linux_hotspot_ea_21-0-35.tar.gz'; \
ESUM='82f64c53acaa045370d6762ebd7441b74e6fda14b464d54d1ff8ca941ec069e6'; \
BINARY_URL='https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21%2B35/OpenJDK21U-jdk_x64_linux_hotspot_21_35.tar.gz'; \
;; \
*) \
echo "Unsupported arch: ${ARCH}"; \
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile.server
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ RUN apt-get update && \
ARCH="$(dpkg --print-architecture)" && \
case "${ARCH}" in \
aarch64|arm64) \
ESUM='f541f545c0e8046c2b242a1701e5be4a7abda2ffbc150d7f96b6cd5571f17429'; \
BINARY_URL='https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21%2B35-ea-beta/OpenJDK21U-jdk_aarch64_linux_hotspot_ea_21-0-35.tar.gz'; \
ESUM='33e440c237438aa2e3866d84ead8d4e00dc0992d98d9fd0ee2fe48192f2dbc4b'; \
BINARY_URL='https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21%2B35/OpenJDK21U-jdk_aarch64_linux_hotspot_21_35.tar.gz'; \
;; \
amd64|i386:x86-64) \
ESUM='b6586c432948134387b801add3b46048e3fb58390d74eea80e00c539016a54e6'; \
BINARY_URL='https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21%2B35-ea-beta/OpenJDK21U-jdk_x64_linux_hotspot_ea_21-0-35.tar.gz'; \
ESUM='82f64c53acaa045370d6762ebd7441b74e6fda14b464d54d1ff8ca941ec069e6'; \
BINARY_URL='https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21%2B35/OpenJDK21U-jdk_x64_linux_hotspot_21_35.tar.gz'; \
;; \
*) \
echo "Unsupported arch: ${ARCH}"; \
Expand Down

0 comments on commit 82740d5

Please sign in to comment.