-
-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* dockerfile: automated nightly updates * dockerfile: automated nightly updates * remove alpine aarch64 --------- Co-authored-by: George Adams <[email protected]>
- Loading branch information
1 parent
6ca8349
commit 7a9dc1b
Showing
20 changed files
with
971 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
# ------------------------------------------------------------------------------ | ||
# NOTE: THIS DOCKERFILE IS GENERATED VIA "update_multiarch.sh" | ||
# | ||
# PLEASE DO NOT EDIT IT DIRECTLY. | ||
# ------------------------------------------------------------------------------ | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
FROM alpine:3.18 | ||
|
||
ENV JAVA_HOME /opt/java/openjdk | ||
ENV PATH $JAVA_HOME/bin:$PATH | ||
|
||
# Default to UTF-8 file.encoding | ||
ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8' | ||
|
||
# fontconfig and ttf-dejavu added to support serverside image generation by Java programs | ||
# java-cacerts added to support adding CA certificates to the Java keystore | ||
# bash is required for the entrypoint script (s. https://github.com/adoptium/containers/issues/415) | ||
RUN apk add --no-cache fontconfig java-cacerts bash libretls musl-locales musl-locales-lang ttf-dejavu tzdata zlib \ | ||
&& rm -rf /var/cache/apk/* | ||
|
||
ENV JAVA_VERSION jdk-21+35 | ||
|
||
RUN set -eux; \ | ||
ARCH="$(apk --print-arch)"; \ | ||
case "${ARCH}" in \ | ||
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'; \ | ||
;; \ | ||
*) \ | ||
echo "Unsupported arch: ${ARCH}"; \ | ||
exit 1; \ | ||
;; \ | ||
esac; \ | ||
wget -O /tmp/openjdk.tar.gz ${BINARY_URL}; \ | ||
echo "${ESUM} */tmp/openjdk.tar.gz" | sha256sum -c -; \ | ||
mkdir -p "$JAVA_HOME"; \ | ||
tar --extract \ | ||
--file /tmp/openjdk.tar.gz \ | ||
--directory "$JAVA_HOME" \ | ||
--strip-components 1 \ | ||
--no-same-owner \ | ||
; \ | ||
rm -f /tmp/openjdk.tar.gz ${JAVA_HOME}/lib/src.zip; | ||
|
||
RUN echo Verifying install ... \ | ||
&& fileEncoding="$(echo 'System.out.println(System.getProperty("file.encoding"))' | jshell -s -)"; [ "$fileEncoding" = 'UTF-8' ]; rm -rf ~/.java \ | ||
&& echo javac --version && javac --version \ | ||
&& echo java --version && java --version \ | ||
&& echo Complete. | ||
COPY entrypoint.sh /__cacert_entrypoint.sh | ||
ENTRYPOINT ["/__cacert_entrypoint.sh"] | ||
|
||
CMD ["jshell"] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#!/usr/bin/env bash | ||
# Sheband needs to be `bash`, see https://github.com/adoptium/containers/issues/415 for details | ||
|
||
set -e | ||
|
||
# Opt-in is only activated if the environment variable is set | ||
if [ -n "$USE_SYSTEM_CA_CERTS" ]; then | ||
|
||
# Copy certificates from /certificates to the system truststore, but only if the directory exists and is not empty. | ||
# The reason why this is not part of the opt-in is because it leaves open the option to mount certificates at the | ||
# system location, for whatever reason. | ||
if [ -d /certificates ] && [ "$(ls -A /certificates)" ]; then | ||
cp -a /certificates/* /usr/local/share/ca-certificates/ | ||
fi | ||
|
||
CACERT=$JAVA_HOME/lib/security/cacerts | ||
|
||
# JDK8 puts its JRE in a subdirectory | ||
if [ -f "$JAVA_HOME/jre/lib/security/cacerts" ]; then | ||
CACERT=$JAVA_HOME/jre/lib/security/cacerts | ||
fi | ||
|
||
# OpenJDK images used to create a hook for `update-ca-certificates`. Since we are using an entrypoint anyway, we | ||
# might as well just generate the truststore and skip the hooks. | ||
update-ca-certificates | ||
|
||
trust extract --overwrite --format=java-cacerts --filter=ca-anchors --purpose=server-auth "$CACERT" | ||
fi | ||
|
||
exec "$@" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
# ------------------------------------------------------------------------------ | ||
# NOTE: THIS DOCKERFILE IS GENERATED VIA "update_multiarch.sh" | ||
# | ||
# PLEASE DO NOT EDIT IT DIRECTLY. | ||
# ------------------------------------------------------------------------------ | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
FROM redhat/ubi9-minimal | ||
|
||
ENV JAVA_HOME /opt/java/openjdk | ||
ENV PATH $JAVA_HOME/bin:$PATH | ||
|
||
# Default to UTF-8 file.encoding | ||
ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8' | ||
|
||
RUN microdnf install -y binutils tzdata openssl wget ca-certificates fontconfig glibc-langpack-en gzip tar \ | ||
&& microdnf clean all | ||
|
||
ENV JAVA_VERSION jdk-21+35 | ||
|
||
RUN set -eux; \ | ||
ARCH="$(objdump="$(command -v objdump)" && objdump --file-headers "$objdump" | awk -F '[:,]+[[:space:]]+' '$1 == "architecture" { print $2 }')"; \ | ||
case "${ARCH}" in \ | ||
aarch64|arm64) \ | ||
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='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}"; \ | ||
exit 1; \ | ||
;; \ | ||
esac; \ | ||
wget -O /tmp/openjdk.tar.gz ${BINARY_URL}; \ | ||
echo "${ESUM} */tmp/openjdk.tar.gz" | sha256sum -c -; \ | ||
mkdir -p "$JAVA_HOME"; \ | ||
tar --extract \ | ||
--file /tmp/openjdk.tar.gz \ | ||
--directory "$JAVA_HOME" \ | ||
--strip-components 1 \ | ||
--no-same-owner \ | ||
; \ | ||
rm -f /tmp/openjdk.tar.gz ${JAVA_HOME}/lib/src.zip; | ||
|
||
RUN echo Verifying install ... \ | ||
&& fileEncoding="$(echo 'System.out.println(System.getProperty("file.encoding"))' | jshell -s -)"; [ "$fileEncoding" = 'UTF-8' ]; rm -rf ~/.java \ | ||
&& echo javac --version && javac --version \ | ||
&& echo java --version && java --version \ | ||
&& echo Complete. | ||
COPY entrypoint.sh /__cacert_entrypoint.sh | ||
ENTRYPOINT ["/__cacert_entrypoint.sh"] | ||
|
||
CMD ["jshell"] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#!/usr/bin/env bash | ||
# Sheband needs to be `bash`, see https://github.com/adoptium/containers/issues/415 for details | ||
|
||
set -e | ||
|
||
# Opt-in is only activated if the environment variable is set | ||
if [ -n "$USE_SYSTEM_CA_CERTS" ]; then | ||
|
||
# Copy certificates from /certificates to the system truststore, but only if the directory exists and is not empty. | ||
# The reason why this is not part of the opt-in is because it leaves open the option to mount certificates at the | ||
# system location, for whatever reason. | ||
if [ -d /certificates ] && [ "$(ls -A /certificates)" ]; then | ||
cp -a /certificates/* /usr/share/pki/ca-trust-source/anchors/ | ||
fi | ||
|
||
CACERT=$JAVA_HOME/lib/security/cacerts | ||
|
||
# JDK8 puts its JRE in a subdirectory | ||
if [ -f "$JAVA_HOME/jre/lib/security/cacerts" ]; then | ||
CACERT=$JAVA_HOME/jre/lib/security/cacerts | ||
fi | ||
|
||
# RHEL-based images already include a routine to update a java truststore from the system CA bundle within | ||
# `update-ca-trust`. All we need to do is to link the system CA bundle to the java truststore. | ||
update-ca-trust | ||
|
||
ln -sf /etc/pki/ca-trust/extracted/java/cacerts "$CACERT" | ||
fi | ||
|
||
exec "$@" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
# ------------------------------------------------------------------------------ | ||
# NOTE: THIS DOCKERFILE IS GENERATED VIA "update_multiarch.sh" | ||
# | ||
# PLEASE DO NOT EDIT IT DIRECTLY. | ||
# ------------------------------------------------------------------------------ | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
FROM ubuntu:22.04 | ||
|
||
ENV JAVA_HOME /opt/java/openjdk | ||
ENV PATH $JAVA_HOME/bin:$PATH | ||
|
||
# Default to UTF-8 file.encoding | ||
ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8' | ||
|
||
RUN apt-get update \ | ||
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends tzdata curl wget ca-certificates fontconfig locales p11-kit binutils \ | ||
&& echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen \ | ||
&& locale-gen en_US.UTF-8 \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
ENV JAVA_VERSION jdk-21+35 | ||
|
||
RUN set -eux; \ | ||
ARCH="$(dpkg --print-architecture)"; \ | ||
case "${ARCH}" in \ | ||
aarch64|arm64) \ | ||
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='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}"; \ | ||
exit 1; \ | ||
;; \ | ||
esac; \ | ||
wget -O /tmp/openjdk.tar.gz ${BINARY_URL}; \ | ||
echo "${ESUM} */tmp/openjdk.tar.gz" | sha256sum -c -; \ | ||
mkdir -p "$JAVA_HOME"; \ | ||
tar --extract \ | ||
--file /tmp/openjdk.tar.gz \ | ||
--directory "$JAVA_HOME" \ | ||
--strip-components 1 \ | ||
--no-same-owner \ | ||
; \ | ||
rm -f /tmp/openjdk.tar.gz ${JAVA_HOME}/lib/src.zip; \ | ||
# https://github.com/docker-library/openjdk/issues/331#issuecomment-498834472 | ||
find "$JAVA_HOME/lib" -name '*.so' -exec dirname '{}' ';' | sort -u > /etc/ld.so.conf.d/docker-openjdk.conf; \ | ||
ldconfig; \ | ||
# https://github.com/docker-library/openjdk/issues/212#issuecomment-420979840 | ||
# https://openjdk.java.net/jeps/341 | ||
java -Xshare:dump; | ||
|
||
RUN echo Verifying install ... \ | ||
&& fileEncoding="$(echo 'System.out.println(System.getProperty("file.encoding"))' | jshell -s -)"; [ "$fileEncoding" = 'UTF-8' ]; rm -rf ~/.java \ | ||
&& echo javac --version && javac --version \ | ||
&& echo java --version && java --version \ | ||
&& echo Complete. | ||
COPY entrypoint.sh /__cacert_entrypoint.sh | ||
ENTRYPOINT ["/__cacert_entrypoint.sh"] | ||
|
||
CMD ["jshell"] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#!/usr/bin/env bash | ||
# Sheband needs to be `bash`, see https://github.com/adoptium/containers/issues/415 for details | ||
|
||
set -e | ||
|
||
# Opt-in is only activated if the environment variable is set | ||
if [ -n "$USE_SYSTEM_CA_CERTS" ]; then | ||
|
||
# Copy certificates from /certificates to the system truststore, but only if the directory exists and is not empty. | ||
# The reason why this is not part of the opt-in is because it leaves open the option to mount certificates at the | ||
# system location, for whatever reason. | ||
if [ -d /certificates ] && [ "$(ls -A /certificates)" ]; then | ||
cp -a /certificates/* /usr/local/share/ca-certificates/ | ||
fi | ||
|
||
CACERT=$JAVA_HOME/lib/security/cacerts | ||
|
||
# JDK8 puts its JRE in a subdirectory | ||
if [ -f "$JAVA_HOME/jre/lib/security/cacerts" ]; then | ||
CACERT=$JAVA_HOME/jre/lib/security/cacerts | ||
fi | ||
|
||
# OpenJDK images used to create a hook for `update-ca-certificates`. Since we are using an entrypoint anyway, we | ||
# might as well just generate the truststore and skip the hooks. | ||
update-ca-certificates | ||
|
||
trust extract --overwrite --format=java-cacerts --filter=ca-anchors --purpose=server-auth "$CACERT" | ||
fi | ||
|
||
exec "$@" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# ------------------------------------------------------------------------------ | ||
# NOTE: THIS DOCKERFILE IS GENERATED VIA "update_multiarch.sh" | ||
# | ||
# PLEASE DO NOT EDIT IT DIRECTLY. | ||
# ------------------------------------------------------------------------------ | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
FROM mcr.microsoft.com/windows/nanoserver:1809 | ||
|
||
SHELL ["cmd", "/s", "/c"] | ||
|
||
ENV JAVA_VERSION jdk-21+35 | ||
|
||
ENV JAVA_HOME C:\\openjdk-21 | ||
# "ERROR: Access to the registry path is denied." | ||
USER ContainerAdministrator | ||
RUN echo Updating PATH: %JAVA_HOME%\bin;%PATH% \ | ||
&& setx /M PATH %JAVA_HOME%\bin;%PATH% \ | ||
&& echo Complete. | ||
USER ContainerUser | ||
|
||
COPY --from=eclipse-temurin:21_35-jdk-windowsservercore-1809 $JAVA_HOME $JAVA_HOME | ||
|
||
RUN echo Verifying install ... \ | ||
&& echo javac --version && javac --version \ | ||
&& echo java --version && java --version \ | ||
&& echo Complete. | ||
|
||
CMD ["jshell"] |
41 changes: 41 additions & 0 deletions
41
21/jdk/windows/nanoserver-ltsc2022/Dockerfile.releases.full
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# ------------------------------------------------------------------------------ | ||
# NOTE: THIS DOCKERFILE IS GENERATED VIA "update_multiarch.sh" | ||
# | ||
# PLEASE DO NOT EDIT IT DIRECTLY. | ||
# ------------------------------------------------------------------------------ | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
FROM mcr.microsoft.com/windows/nanoserver:ltsc2022 | ||
|
||
SHELL ["cmd", "/s", "/c"] | ||
|
||
ENV JAVA_VERSION jdk-21+35 | ||
|
||
ENV JAVA_HOME C:\\openjdk-21 | ||
# "ERROR: Access to the registry path is denied." | ||
USER ContainerAdministrator | ||
RUN echo Updating PATH: %JAVA_HOME%\bin;%PATH% \ | ||
&& setx /M PATH %JAVA_HOME%\bin;%PATH% \ | ||
&& echo Complete. | ||
USER ContainerUser | ||
|
||
COPY --from=eclipse-temurin:21_35-jdk-windowsservercore-ltsc2022 $JAVA_HOME $JAVA_HOME | ||
|
||
RUN echo Verifying install ... \ | ||
&& echo javac --version && javac --version \ | ||
&& echo java --version && java --version \ | ||
&& echo Complete. | ||
|
||
CMD ["jshell"] |
Oops, something went wrong.