Last active
August 29, 2015 14:04
-
-
Save chrisdchristo/0a81419c336855747f17 to your computer and use it in GitHub Desktop.
Ubuntu + java8 Dockerfile
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
# chrischristo/ubuntu-java8 | |
FROM ubuntu | |
# Install prerequisites | |
RUN apt-get update | |
RUN apt-get install -y software-properties-common | |
# Install java8 | |
RUN add-apt-repository -y ppa:webupd8team/java | |
RUN apt-get update | |
RUN echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | sudo /usr/bin/debconf-set-selections | |
RUN apt-get install -y oracle-java8-installer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://registry.hub.docker.com/u/chrischristo/ubuntu-java8/