Skip to content
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

Update oracle-jdk directory to use jdk 8u131 instead of 8u102 #13

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions oracle-jdk/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#
# REQUIRED FILES TO BUILD THIS IMAGE
# ----------------------------------
# (1) jdk-8u102-linux-x64.rpm
# (1) jdk-8u131-linux-x64.rpm
# Download from http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html
#
# HOW TO BUILD THIS IMAGE
Expand All @@ -30,7 +30,7 @@ MAINTAINER Bruno Borges <bruno.borges@oracle.com>

# Environment variables required for this build (do NOT change)
# -------------------------------------------------------------
ENV JAVA_RPM jdk-8u102-linux-x64.rpm
ENV JAVA_RPM jdk-8u131-linux-x64.rpm
ENV GLASSFISH_PKG http://download.java.net/glassfish/4.1.1/release/glassfish-4.1.1.zip
ENV PKG_FILE_NAME glassfish-4.1.1.zip

Expand Down
4 changes: 2 additions & 2 deletions oracle-jdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ For more information and documentation, read the [Docker Images from Oracle Linu

$ cd glassfish-docker

2. [Download](http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html) and drop the Oracle JDK 8u102 RPM 64bit file **jdk-8u102-linux-x64.rpm** in this folder
2. [Download](http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html) and drop the Oracle JDK 8u131 RPM 64bit file **jdk-8u131-linux-x64.rpm** in this folder

Linux x64 158 MB jdk-8u102-linux-x64.rpm
Linux x64 162.11 MB jdk-8u131-linux-x64.rpm

3. Execute the build script as root

Expand Down
4 changes: 2 additions & 2 deletions oracle-jdk/build.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/bin/bash
IMAGE_NAME=glassfish:4.1.1
JAVA_VERSION="8u102"
JAVA_VERSION="8u131"
JAVA_PKG="jdk-${JAVA_VERSION}-linux-x64.rpm"
JAVA_PKG_MD5="1ffe998845b594c66db2703dd5f60d88"
JAVA_PKG_MD5="9024d13ec651d07de450d465f14065a6"

# Validate Java Package
echo "====================="
Expand Down