An image with java-8-oracle, based on Ubuntu 14.04
10K+
# Base image
FROM ubuntu:14.04
MAINTAINER Grigory Pomadchin, [email protected]
ENV DEBIAN_FRONTEND noninteractive
# Helpful soft
RUN apt-get update -y --force-yes && \
apt-get install -y --force-yes software-properties-common
# Java
RUN add-apt-repository ppa:webupd8team/java
RUN echo debconf shared/accepted-oracle-license-v1-1 select true | debconf-set-selections
RUN apt-get update -y --force-yes
RUN apt-get install -y --force-yes oracle-java8-installer
ENV JAVA_HOME /usr/lib/jvm/java-8-oracle
# Define default command.
CMD ["bash"]
Content type
Image
Digest
Size
452.4 MB
Last updated
over 10 years ago
docker pull daunnc/java-8-oracle