Ubuntu 14.04.3 LTS / Oracle Java 8 (1.8.0_72) from PPA w/ JCE Unlimited Strength Juristiction Policy
10K+
FROM keks/ubuntu
MAINTAINER Jan M. <[email protected]>
# oracle java 8 install following instructions from:
# http://www.webupd8.org/2012/09/install-oracle-java-8-in-ubuntu-via-ppa.html
# add repo & install
RUN \
echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | debconf-set-selections && \
add-apt-repository -y ppa:webupd8team/java && \
apt-get update && \
apt-get install -y oracle-java8-installer && \
rm -rf /var/lib/apt/lists/* && \
rm -rf /var/cache/oracle-jdk8-installer
ENV JAVA_HOME=/usr/lib/jvm/java-8-oracle/
# JCE unlimited strength encryption policy headers
ADD *.jar ${JAVA_HOME}/jre/lib/security/
This is my base image for java 8. The usable Image is called keks/java and adds a user java and a /deploy folder.
This image includes the Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files (see http://www.oracle.com/technetwork/java/javase/downloads/jce8-download-2133166.html)
Content type
Image
Digest
sha256:634063849…
Size
314 MB
Last updated
over 10 years ago
docker pull keks/java-base