comparison tomcat/Dockerfile @ 12:cbaf2e9ca770

DEP-7: install ms ttf fonts for jasper
author smith@nwoca.org
date Sat, 26 Dec 2015 22:19:41 +0000
parents b65e777478f3
children 6a4ba408b8c4
comparison
equal deleted inserted replaced
11:cf23acedd048 12:cbaf2e9ca770
1 FROM tomcat:8.0.30-jre8 1 FROM tomcat:8.0.30-jre8
2 2
3 MAINTAINER Dave Smith <smith@nwoca.org> 3 MAINTAINER Dave Smith <smith@nwoca.org>
4
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
4 9
5 WORKDIR /usr/local/tomcat 10 WORKDIR /usr/local/tomcat
6 11
7 COPY setenv.sh bin/ 12 COPY setenv.sh bin/
8 13