9
|
1 FROM tomcat:8.0.30-jre8
|
4
|
2
|
|
3 MAINTAINER Dave Smith <smith@nwoca.org>
|
|
4
|
12
|
5 RUN echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | debconf-set-selections \
|
|
6 && echo 'deb http://httpredir.debian.org/debian jessie contrib' > /etc/apt/sources.list.d/jessie-contrib.list \
|
|
7 && apt-get update \
|
|
8 && apt-get install -y ttf-mscorefonts-installer
|
|
9
|
9
|
10 WORKDIR /usr/local/tomcat
|
5
|
11
|
9
|
12 COPY setenv.sh bin/
|
23
|
13 COPY tomcat-users.xml server.xml context.xml conf/
|
5
|
14
|
9
|
15 RUN rm -rf webapps/docs webapps/ROOT webapps/examples webapps/docs webapps/host-manager \
|
|
16 && chmod +x bin/setenv.sh
|