JAVA 6 official (see docker file) + manual install tomcat 7
10K+
FROM phusion/baseimage:latest
MAINTAINER kristof slechten
ENV DEBIAN_FRONTEND noninteractive
RUN echo /usr/bin/debconf shared/accepted-oracle-license-v1-1 select true | /usr/bin/debconf-set-selections
RUN apt-get update &&
apt-get install -yq python-software-properties &&
add-apt-repository ppa:webupd8team/java &&
apt-get remove -yq python-software-properties &&
apt-get autoremove -yq &&
apt-get clean -yq &&
rm -rf /var/lib/apt/lists/*
RUN apt-get update &&
apt-get install -yq oracle-java6-installer oracle-java6-set-default &&
apt-get autoremove -yq &&
apt-get clean -yq &&
rm -rf /var/lib/apt/lists/*
Content type
Image
Digest
Size
280.4 MB
Last updated
about 10 years ago
docker pull prodexdocker/java6-tomcat7-base