view tomcat/Dockerfile @ 289:b0b52c426f16

DEP-16: update tomcat, java and postgres version
author smith@nwoca.org
date Wed, 26 Dec 2018 18:26:46 +0000
parents 1866c261576f
children 4b026170dfea
line wrap: on
line source
FROM tomcat:8.5.37-jre8

MAINTAINER Dave Smith <smith@nwoca.org>

RUN echo "deb http://httpredir.debian.org/debian jessie main contrib" > /etc/apt/sources.list \
    && echo "deb http://security.debian.org/ jessie/updates main contrib" >> /etc/apt/sources.list \
    && echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | debconf-set-selections \
    && apt-get update \
    && apt-get install -y ttf-mscorefonts-installer \
    && apt-get clean \
    && apt-get autoremove -y \
    && rm -rf /var/lib/apt/lists/*
    
RUN apt-get update \
    && apt-get install -y postgresql-client  \
    && apt-get clean \
    && apt-get autoremove -y \
    && rm -rf /var/lib/apt/lists/*

WORKDIR /usr/local/tomcat

COPY setenv.sh bin/
COPY tomcat-users.xml server.xml context.xml logging.properties conf/

RUN rm -rf webapps/docs webapps/ROOT webapps/examples webapps/docs webapps/host-manager \
	&& chmod +x bin/setenv.sh
	
ENV TZ=America/New_York