annotate tomcat/Dockerfile @ 19:ebeaedb20e88
DEP-7: change local volumes to use PWD rather than relative to template
author |
Dave smith <smith@nwoca.org> |
date |
Sun, 27 Dec 2015 18:23:31 -0500 |
parents |
cbaf2e9ca770 |
children |
6a4ba408b8c4 |
rev |
line source |
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/
|
5
|
13
|
9
|
14 RUN rm -rf webapps/docs webapps/ROOT webapps/examples webapps/docs webapps/host-manager \
|
|
15 && chmod +x bin/setenv.sh
|