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 base image, dockerfile/ubuntu no longer available #21

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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This repository contains **Dockerfile** of [Java](https://www.java.com/) for [Do

### Base Docker Image

* [dockerfile/ubuntu](http://dockerfile.github.io/#/ubuntu)
* [ubuntu:14.04](https://registry.hub.docker.com/u/library/ubuntu/)


### Docker Tags
Expand Down
2 changes: 1 addition & 1 deletion openjdk-6-jdk/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#

# Pull base image.
FROM dockerfile/ubuntu
FROM ubuntu:14.04

# Install Java.
RUN \
Expand Down
2 changes: 1 addition & 1 deletion openjdk-6-jre/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#

# Pull base image.
FROM dockerfile/ubuntu
FROM ubuntu:14.04

# Install Java.
RUN \
Expand Down
2 changes: 1 addition & 1 deletion openjdk-7-jdk/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#

# Pull base image.
FROM dockerfile/ubuntu
FROM ubuntu:14.04

# Install Java.
RUN \
Expand Down
2 changes: 1 addition & 1 deletion openjdk-7-jre/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#

# Pull base image.
FROM dockerfile/ubuntu
FROM ubuntu:14.04

# Install Java.
RUN \
Expand Down
3 changes: 2 additions & 1 deletion oracle-java6/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@
#

# Pull base image.
FROM dockerfile/ubuntu
FROM ubuntu:14.04

# Install Java.
RUN \
echo oracle-java6-installer shared/accepted-oracle-license-v1-1 select true | debconf-set-selections && \
apt-get install -y software-properties-common && \
add-apt-repository -y ppa:webupd8team/java && \
apt-get update && \
apt-get install -y oracle-java6-installer && \
Expand Down
3 changes: 2 additions & 1 deletion oracle-java7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@
#

# Pull base image.
FROM dockerfile/ubuntu
FROM ubuntu:14.04

# Install Java.
RUN \
echo oracle-java7-installer shared/accepted-oracle-license-v1-1 select true | debconf-set-selections && \
apt-get install -y software-properties-common && \
add-apt-repository -y ppa:webupd8team/java && \
apt-get update && \
apt-get install -y oracle-java7-installer && \
Expand Down
3 changes: 2 additions & 1 deletion oracle-java8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@
#

# Pull base image.
FROM dockerfile/ubuntu
FROM ubuntu:14.04

# Install Java.
RUN \
echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | debconf-set-selections && \
apt-get install -y software-properties-common && \
add-apt-repository -y ppa:webupd8team/java && \
apt-get update && \
apt-get install -y oracle-java8-installer && \
Expand Down