-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
eclipse-temurin: add JDK8u Alpine builds #12000
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Diff for 8c7e178:diff --git a/_bashbrew-cat b/_bashbrew-cat
index 51a099a..6cac181 100644
--- a/_bashbrew-cat
+++ b/_bashbrew-cat
@@ -2,6 +2,11 @@ Maintainers: George Adams <george.adams@microsoft.com> (@gdams)
GitRepo: https://github.com/adoptium/containers.git
GitFetch: refs/heads/main
+Tags: 8u322-b06-jdk-alpine, 8-jdk-alpine, 8-alpine
+GitCommit: 3cce04581c9f160bacf9052510b43ad9aeef7c8f
+Directory: 8/jdk/alpine
+File: Dockerfile.releases.full
+
Tags: 8u322-b06-jdk-centos7, 8-jdk-centos7, 8-centos7
Architectures: amd64, arm64v8, ppc64le
GitCommit: 130db1e5356f5a86868b70809c8311b0aad0c756
@@ -47,6 +52,11 @@ Directory: 8/jdk/windows/windowsservercore-ltsc2022
File: Dockerfile.releases.full
Constraints: windowsservercore-ltsc2022
+Tags: 8u322-b06-jre-alpine, 8-jre-alpine
+GitCommit: 3cce04581c9f160bacf9052510b43ad9aeef7c8f
+Directory: 8/jre/alpine
+File: Dockerfile.releases.full
+
Tags: 8u322-b06-jre-centos7, 8-jre-centos7
Architectures: amd64, arm64v8, ppc64le
GitCommit: 130db1e5356f5a86868b70809c8311b0aad0c756
diff --git a/_bashbrew-list b/_bashbrew-list
index e2b5a88..355bc8b 100644
--- a/_bashbrew-list
+++ b/_bashbrew-list
@@ -1,5 +1,6 @@
eclipse-temurin:8
eclipse-temurin:8u322-b06-jdk
+eclipse-temurin:8u322-b06-jdk-alpine
eclipse-temurin:8u322-b06-jdk-centos7
eclipse-temurin:8u322-b06-jdk-focal
eclipse-temurin:8u322-b06-jdk-nanoserver
@@ -9,6 +10,7 @@ eclipse-temurin:8u322-b06-jdk-windowsservercore
eclipse-temurin:8u322-b06-jdk-windowsservercore-1809
eclipse-temurin:8u322-b06-jdk-windowsservercore-ltsc2022
eclipse-temurin:8u322-b06-jre
+eclipse-temurin:8u322-b06-jre-alpine
eclipse-temurin:8u322-b06-jre-centos7
eclipse-temurin:8u322-b06-jre-focal
eclipse-temurin:8u322-b06-jre-nanoserver
@@ -17,9 +19,11 @@ eclipse-temurin:8u322-b06-jre-nanoserver-ltsc2022
eclipse-temurin:8u322-b06-jre-windowsservercore
eclipse-temurin:8u322-b06-jre-windowsservercore-1809
eclipse-temurin:8u322-b06-jre-windowsservercore-ltsc2022
+eclipse-temurin:8-alpine
eclipse-temurin:8-centos7
eclipse-temurin:8-focal
eclipse-temurin:8-jdk
+eclipse-temurin:8-jdk-alpine
eclipse-temurin:8-jdk-centos7
eclipse-temurin:8-jdk-focal
eclipse-temurin:8-jdk-nanoserver
@@ -29,6 +33,7 @@ eclipse-temurin:8-jdk-windowsservercore
eclipse-temurin:8-jdk-windowsservercore-1809
eclipse-temurin:8-jdk-windowsservercore-ltsc2022
eclipse-temurin:8-jre
+eclipse-temurin:8-jre-alpine
eclipse-temurin:8-jre-centos7
eclipse-temurin:8-jre-focal
eclipse-temurin:8-jre-nanoserver
diff --git a/eclipse-temurin_11-jre-alpine/Dockerfile.releases.full b/eclipse-temurin_8-alpine/Dockerfile.releases.full
similarity index 82%
copy from eclipse-temurin_11-jre-alpine/Dockerfile.releases.full
copy to eclipse-temurin_8-alpine/Dockerfile.releases.full
index 0c1d0a5..e48c14e 100644
--- a/eclipse-temurin_11-jre-alpine/Dockerfile.releases.full
+++ b/eclipse-temurin_8-alpine/Dockerfile.releases.full
@@ -24,14 +24,14 @@ ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
RUN apk add --no-cache tzdata musl-locales musl-locales-lang \
&& rm -rf /var/cache/apk/*
-ENV JAVA_VERSION jdk-11.0.14.1+1
+ENV JAVA_VERSION jdk8u322-b06
RUN set -eux; \
ARCH="$(apk --print-arch)"; \
case "${ARCH}" in \
amd64|x86_64) \
- ESUM='6af0a3a37d4d6ca2b7f542184b47560339635c382f5ba13a9baf1c140671a826'; \
- BINARY_URL='https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.14.1%2B1/OpenJDK11U-jre_x64_alpine-linux_hotspot_11.0.14.1_1.tar.gz'; \
+ ESUM='c7e781064c4a63ad6cd2399b2fa34de854a7d9bfd3ad2543d34bd7ba8f818822'; \
+ BINARY_URL='https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u322-b06/OpenJDK8U-jdk_x64_alpine-linux_hotspot_8u322b06.tar.gz'; \
;; \
*) \
echo "Unsupported arch: ${ARCH}"; \
@@ -53,5 +53,6 @@ ENV JAVA_HOME=/opt/java/openjdk \
PATH="/opt/java/openjdk/bin:$PATH"
RUN echo Verifying install ... \
- && echo java --version && java --version \
+ && echo javac -version && javac -version \
+ && echo java -version && java -version \
&& echo Complete.
diff --git a/eclipse-temurin_17-jre-alpine/Dockerfile.releases.full b/eclipse-temurin_8-jre-alpine/Dockerfile.releases.full
similarity index 84%
copy from eclipse-temurin_17-jre-alpine/Dockerfile.releases.full
copy to eclipse-temurin_8-jre-alpine/Dockerfile.releases.full
index 9622aa3..4e2aa5b 100644
--- a/eclipse-temurin_17-jre-alpine/Dockerfile.releases.full
+++ b/eclipse-temurin_8-jre-alpine/Dockerfile.releases.full
@@ -24,14 +24,14 @@ ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
RUN apk add --no-cache tzdata musl-locales musl-locales-lang \
&& rm -rf /var/cache/apk/*
-ENV JAVA_VERSION jdk-17.0.2+8
+ENV JAVA_VERSION jdk8u322-b06
RUN set -eux; \
ARCH="$(apk --print-arch)"; \
case "${ARCH}" in \
amd64|x86_64) \
- ESUM='043b3169b3d1f6fbf0d807e61b9f94d167d08e13dd2f4fb76786e60ee65e5ae5'; \
- BINARY_URL='https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.2%2B8/OpenJDK17U-jre_x64_alpine-linux_hotspot_17.0.2_8.tar.gz'; \
+ ESUM='984f1a1f96774e6fbb644031b89de349afb354c9d12232ffb500c6a5d4013b1b'; \
+ BINARY_URL='https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u322-b06/OpenJDK8U-jre_x64_alpine-linux_hotspot_8u322b06.tar.gz'; \
;; \
*) \
echo "Unsupported arch: ${ARCH}"; \
@@ -53,5 +53,5 @@ ENV JAVA_HOME=/opt/java/openjdk \
PATH="/opt/java/openjdk/bin:$PATH"
RUN echo Verifying install ... \
- && echo java --version && java --version \
+ && echo java -version && java -version \
&& echo Complete. Relevant Maintainers:
|
CI failure (and in-progress CI checks) are all Windows, which are unchanged -- merging! 👍 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.