Sign inSign up

daunnc/java-8-oracle

By daunnc

Updated over 10 years ago

An image with java-8-oracle, based on Ubuntu 14.04

Image
1

10K+

daunnc/java-8-oracle repository overview

# 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"]

Tag summary

Content type

Image

Digest

Size

452.4 MB

Last updated

over 10 years ago

docker pull daunnc/java-8-oracle