Skip to content

Commit

Permalink
Update Dockerfiles (#432)
Browse files Browse the repository at this point in the history
* dockerfile: automated nightly updates

* dockerfile: automated nightly updates

* add support for alpine aarch64

---------

Co-authored-by: George Adams <[email protected]>
  • Loading branch information
eclipse-temurin-bot and gdams authored Oct 11, 2023
1 parent 7a9dc1b commit 7360285
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions 21/jdk/alpine/Dockerfile.releases.full
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ ENV JAVA_VERSION jdk-21+35
RUN set -eux; \
ARCH="$(apk --print-arch)"; \
case "${ARCH}" in \
aarch64|arm64) \
ESUM='3f8e5b0447d2dd711f12edda611ed1cf9aab4ca53c8fe32fca8fb1e6fee41c12'; \
BINARY_URL='https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21%2B35/OpenJDK21U-jdk_aarch64_alpine-linux_hotspot_21_35.tar.gz'; \
;; \
amd64|x86_64) \
ESUM='4fd74f93f0b1a94d8471e0ed801fe9d938f7471f6efe8791880c85e7716c943f'; \
BINARY_URL='https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21%2B35/OpenJDK21U-jdk_x64_alpine-linux_hotspot_21_35.tar.gz'; \
Expand Down
4 changes: 4 additions & 0 deletions 21/jre/alpine/Dockerfile.releases.full
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ ENV JAVA_VERSION jdk-21+35
RUN set -eux; \
ARCH="$(apk --print-arch)"; \
case "${ARCH}" in \
aarch64|arm64) \
ESUM='ff4102e2aa0b35f337d579f0d19aff1aa4a10bee9ab0951137affdb50dd8f3e2'; \
BINARY_URL='https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21%2B35/OpenJDK21U-jre_aarch64_alpine-linux_hotspot_21_35.tar.gz'; \
;; \
amd64|x86_64) \
ESUM='9e7aa5ca9d8819e8fb3ae9f3c146905bee81808b70b875de0984ec55b1bd8559'; \
BINARY_URL='https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21%2B35/OpenJDK21U-jre_x64_alpine-linux_hotspot_21_35.tar.gz'; \
Expand Down
2 changes: 1 addition & 1 deletion common_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ all_jvms="hotspot"
# Supported arches for each of the os_families
os_families="linux alpine-linux windows"
linux_arches="aarch64 armv7l ppc64le s390x x86_64"
alpine_linux_arches="x86_64"
alpine_linux_arches="aarch64 x86_64"
windows_arches="windows-amd windows-nano"

# All supported packages
Expand Down

0 comments on commit 7360285

Please sign in to comment.