Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions openjdk-6-jre/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM debian:wheezy

# A few problems with compiling Java from source:
# 1. Oracle. Licensing prevents us from redistributing the official JDK.
# 2. Compiling OpenJDK also requires the JDK to be installed, and it gets
# really hairy.

ENV JAVA_VERSION 6b32

RUN apt-get update && apt-get install -y curl openjdk-6-jre-headless="$JAVA_VERSION"* unzip wget

# If you're reading this and have any feedback on how this image could be
# improved, please open an issue or a pull request so we can discuss it!
13 changes: 13 additions & 0 deletions openjdk-7-jre/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM debian:jessie

# A few problems with compiling Java from source:
# 1. Oracle. Licensing prevents us from redistributing the official JDK.
# 2. Compiling OpenJDK also requires the JDK to be installed, and it gets
# really hairy.

ENV JAVA_VERSION 7u65

RUN apt-get update && apt-get install -y curl openjdk-7-jre-headless="$JAVA_VERSION"* unzip wget

# If you're reading this and have any feedback on how this image could be
# improved, please open an issue or a pull request so we can discuss it!
13 changes: 13 additions & 0 deletions openjdk-8-jre/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM debian:sid

# A few problems with compiling Java from source:
# 1. Oracle. Licensing prevents us from redistributing the official JDK.
# 2. Compiling OpenJDK also requires the JDK to be installed, and it gets
# really hairy.

ENV JAVA_VERSION 8u40

RUN apt-get update && apt-get install -y curl openjdk-8-jre-headless="$JAVA_VERSION"* unzip wget

# If you're reading this and have any feedback on how this image could be
# improved, please open an issue or a pull request so we can discuss it!