https://github.com/zmre/docker-java-ubuntu
Java base images based on phusion ubuntu base image
https://github.com/zmre/docker-java-ubuntu
Last synced: 5 months ago
JSON representation
Java base images based on phusion ubuntu base image
- Host: GitHub
- URL: https://github.com/zmre/docker-java-ubuntu
- Owner: zmre
- Created: 2015-06-03T18:03:48.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-06-03T18:13:08.000Z (about 11 years ago)
- Last Synced: 2025-10-21T18:52:44.736Z (9 months ago)
- Size: 117 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Java Docker Images
This repo contains java base images built on top of the Phusion base image, which is built on top of Ubuntu. This builds both openjdk and oracle jdk. To build an image, you must first choose a branch to choose Java 7 or Java 8.
Each Dockerfile specifies the specific base image and the specific version of Java in order to build reproducible images that continue to work for a specific setup into the future. That said, you should check to make sure these are the latest and up to date and adjust the files if they are not unless you have a specific need to be on an older version.
To build Oracle JDK 8, do this:
git checkout 8
make oracle
To build OpenJDK 7, do this:
git checkout 7
make open
You get the idea.