-
Notifications
You must be signed in to change notification settings - Fork 476
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add initial all-Oracle variants (oraclelinux + jdk.java.net tarballs)
- Loading branch information
Showing
22 changed files
with
438 additions
and
70 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
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,50 @@ | ||
FROM oraclelinux:7-slim | ||
|
||
RUN set -eux; \ | ||
yum install -y \ | ||
gzip \ | ||
tar \ | ||
; \ | ||
rm -rf /var/cache/yum | ||
|
||
# Default to UTF-8 file.encoding | ||
#ENV LANG C.UTF-8 | ||
# TODO oraclelinux doesn't have C.UTF-8 by default?? | ||
|
||
ENV JAVA_HOME /usr/java/openjdk-10 | ||
ENV PATH $JAVA_HOME/bin:$PATH | ||
|
||
# http://jdk.java.net/ | ||
ENV JAVA_VERSION 10.0.2 | ||
ENV JAVA_URL https://download.java.net/java/GA/jdk10/10.0.2/19aef61b38124481863b1413dce1855f/13/openjdk-10.0.2_linux-x64_bin.tar.gz | ||
ENV JAVA_SHA256 f3b26abc9990a0b8929781310e14a339a7542adfd6596afb842fa0dd7e3848b2 | ||
|
||
RUN set -eux; \ | ||
\ | ||
curl -fL -o /openjdk.tgz "$JAVA_URL"; \ | ||
echo "$JAVA_SHA256 */openjdk.tgz" | sha256sum -c -; \ | ||
mkdir -p "$JAVA_HOME"; \ | ||
tar --extract --file /openjdk.tgz --directory "$JAVA_HOME" --strip-components 1; \ | ||
rm /openjdk.tgz; \ | ||
\ | ||
# https://github.com/oracle/docker-images/blob/a56e0d1ed968ff669d2e2ba8a1483d0f3acc80c0/OracleJava/java-8/Dockerfile#L17-L19 | ||
ln -sfT "$JAVA_HOME" /usr/java/default; \ | ||
ln -sfT "$JAVA_HOME" /usr/java/latest; \ | ||
for bin in "$JAVA_HOME/bin/"*; do \ | ||
base="$(basename "$bin")"; \ | ||
[ ! -e "/usr/bin/$base" ]; \ | ||
alternatives --install "/usr/bin/$base" "$base" "$bin" 20000; \ | ||
done; \ | ||
\ | ||
# https://github.com/docker-library/openjdk/issues/212#issuecomment-420979840 | ||
# http://openjdk.java.net/jeps/341 | ||
java -Xshare:dump; \ | ||
\ | ||
# basic smoke test | ||
java --version; \ | ||
javac --version | ||
|
||
# https://docs.oracle.com/javase/10/tools/jshell.htm | ||
# https://docs.oracle.com/javase/10/jshell/ | ||
# https://en.wikipedia.org/wiki/JShell | ||
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
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
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
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,50 @@ | ||
FROM oraclelinux:7-slim | ||
|
||
RUN set -eux; \ | ||
yum install -y \ | ||
gzip \ | ||
tar \ | ||
; \ | ||
rm -rf /var/cache/yum | ||
|
||
# Default to UTF-8 file.encoding | ||
#ENV LANG C.UTF-8 | ||
# TODO oraclelinux doesn't have C.UTF-8 by default?? | ||
|
||
ENV JAVA_HOME /usr/java/openjdk-11 | ||
ENV PATH $JAVA_HOME/bin:$PATH | ||
|
||
# http://jdk.java.net/ | ||
ENV JAVA_VERSION 11-ea+28 | ||
ENV JAVA_URL https://download.java.net/java/early_access/jdk11/28/GPL/openjdk-11+28_linux-x64_bin.tar.gz | ||
ENV JAVA_SHA256 3784cfc4670f0d4c5482604c7c513beb1a92b005f569df9bf100e8bef6610f2e | ||
|
||
RUN set -eux; \ | ||
\ | ||
curl -fL -o /openjdk.tgz "$JAVA_URL"; \ | ||
echo "$JAVA_SHA256 */openjdk.tgz" | sha256sum -c -; \ | ||
mkdir -p "$JAVA_HOME"; \ | ||
tar --extract --file /openjdk.tgz --directory "$JAVA_HOME" --strip-components 1; \ | ||
rm /openjdk.tgz; \ | ||
\ | ||
# https://github.com/oracle/docker-images/blob/a56e0d1ed968ff669d2e2ba8a1483d0f3acc80c0/OracleJava/java-8/Dockerfile#L17-L19 | ||
ln -sfT "$JAVA_HOME" /usr/java/default; \ | ||
ln -sfT "$JAVA_HOME" /usr/java/latest; \ | ||
for bin in "$JAVA_HOME/bin/"*; do \ | ||
base="$(basename "$bin")"; \ | ||
[ ! -e "/usr/bin/$base" ]; \ | ||
alternatives --install "/usr/bin/$base" "$base" "$bin" 20000; \ | ||
done; \ | ||
\ | ||
# https://github.com/docker-library/openjdk/issues/212#issuecomment-420979840 | ||
# http://openjdk.java.net/jeps/341 | ||
java -Xshare:dump; \ | ||
\ | ||
# basic smoke test | ||
java --version; \ | ||
javac --version | ||
|
||
# https://docs.oracle.com/javase/10/tools/jshell.htm | ||
# https://docs.oracle.com/javase/10/jshell/ | ||
# https://en.wikipedia.org/wiki/JShell | ||
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
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
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
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,31 @@ | ||
FROM alpine:3.8 | ||
|
||
ENV JAVA_HOME /opt/openjdk-12 | ||
ENV PATH $JAVA_HOME/bin:$PATH | ||
|
||
# http://jdk.java.net/ | ||
ENV JAVA_VERSION 12-ea+12 | ||
ENV JAVA_URL https://download.java.net/java/early_access/alpine/12/binaries/openjdk-12-ea+12_linux-x64-musl_bin.tar.gz | ||
ENV JAVA_SHA256 36729ff2deec675c87fefbee47b805ad1555192f424ca4debeb81f30eb1bf587 | ||
# "For Alpine Linux, builds are produced on a reduced schedule and may not be in sync with the other platforms." | ||
|
||
RUN set -eux; \ | ||
\ | ||
wget -O /openjdk.tgz "$JAVA_URL"; \ | ||
echo "$JAVA_SHA256 */openjdk.tgz" | sha256sum -c -; \ | ||
mkdir -p "$JAVA_HOME"; \ | ||
tar --extract --file /openjdk.tgz --directory "$JAVA_HOME" --strip-components 1; \ | ||
rm /openjdk.tgz; \ | ||
\ | ||
# https://github.com/docker-library/openjdk/issues/212#issuecomment-420979840 | ||
# http://openjdk.java.net/jeps/341 | ||
java -Xshare:dump; \ | ||
\ | ||
# basic smoke test | ||
java --version; \ | ||
javac --version | ||
|
||
# https://docs.oracle.com/javase/10/tools/jshell.htm | ||
# https://docs.oracle.com/javase/10/jshell/ | ||
# https://en.wikipedia.org/wiki/JShell | ||
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,50 @@ | ||
FROM oraclelinux:7-slim | ||
|
||
RUN set -eux; \ | ||
yum install -y \ | ||
gzip \ | ||
tar \ | ||
; \ | ||
rm -rf /var/cache/yum | ||
|
||
# Default to UTF-8 file.encoding | ||
#ENV LANG C.UTF-8 | ||
# TODO oraclelinux doesn't have C.UTF-8 by default?? | ||
|
||
ENV JAVA_HOME /usr/java/openjdk-12 | ||
ENV PATH $JAVA_HOME/bin:$PATH | ||
|
||
# http://jdk.java.net/ | ||
ENV JAVA_VERSION 12-ea+12 | ||
ENV JAVA_URL https://download.java.net/java/early_access/jdk12/12/GPL/openjdk-12-ea+12_linux-x64_bin.tar.gz | ||
ENV JAVA_SHA256 7cf6802479fe3a884642250640938e8ee9d4ce61c517779921ecbe04fe491456 | ||
|
||
RUN set -eux; \ | ||
\ | ||
curl -fL -o /openjdk.tgz "$JAVA_URL"; \ | ||
echo "$JAVA_SHA256 */openjdk.tgz" | sha256sum -c -; \ | ||
mkdir -p "$JAVA_HOME"; \ | ||
tar --extract --file /openjdk.tgz --directory "$JAVA_HOME" --strip-components 1; \ | ||
rm /openjdk.tgz; \ | ||
\ | ||
# https://github.com/oracle/docker-images/blob/a56e0d1ed968ff669d2e2ba8a1483d0f3acc80c0/OracleJava/java-8/Dockerfile#L17-L19 | ||
ln -sfT "$JAVA_HOME" /usr/java/default; \ | ||
ln -sfT "$JAVA_HOME" /usr/java/latest; \ | ||
for bin in "$JAVA_HOME/bin/"*; do \ | ||
base="$(basename "$bin")"; \ | ||
[ ! -e "/usr/bin/$base" ]; \ | ||
alternatives --install "/usr/bin/$base" "$base" "$bin" 20000; \ | ||
done; \ | ||
\ | ||
# https://github.com/docker-library/openjdk/issues/212#issuecomment-420979840 | ||
# http://openjdk.java.net/jeps/341 | ||
java -Xshare:dump; \ | ||
\ | ||
# basic smoke test | ||
java --version; \ | ||
javac --version | ||
|
||
# https://docs.oracle.com/javase/10/tools/jshell.htm | ||
# https://docs.oracle.com/javase/10/jshell/ | ||
# https://en.wikipedia.org/wiki/JShell | ||
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
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
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
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
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
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
Oops, something went wrong.