Last active
August 29, 2015 14:22
-
-
Save Stanback/8d04f8275cfed76031cd to your computer and use it in GitHub Desktop.
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
# | |
# Oracle Java8 Dockerfile | |
# | |
FROM ubuntu | |
RUN apt-get update; \ | |
apt-get install -y \ | |
software-properties-common | |
RUN apt-add-repository ppa:webupd8team/java | |
RUN echo debconf shared/accepted-oracle-license-v1-1 select true | debconf-set-selections; \ | |
echo debconf shared/accepted-oracle-license-v1-1 seen true | debconf-set-selections | |
RUN apt-get update; \ | |
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