annotate tomcat/Dockerfile @ 356:bab419573d28 release/2.8.2

flow: Closed <release> '2.8.2'.
author aldrich@ssdt-ohio.org
date Wed, 20 May 2020 16:06:33 +0100
parents b0b52c426f16
children 4b026170dfea
rev   line source
289
b0b52c426f16 DEP-16: update tomcat, java and postgres version
smith@nwoca.org
parents: 256
diff changeset
1 FROM tomcat:8.5.37-jre8
4
b5534ea9a4cb initial tomcat dockerfile
smith@nwoca.org
parents:
diff changeset
2
b5534ea9a4cb initial tomcat dockerfile
smith@nwoca.org
parents:
diff changeset
3 MAINTAINER Dave Smith <smith@nwoca.org>
b5534ea9a4cb initial tomcat dockerfile
smith@nwoca.org
parents:
diff changeset
4
115
151bd88f6c56 DEP-12: update tomcat version and ms fonts installer
smith@nwoca.org
parents: 92
diff changeset
5 RUN echo "deb http://httpredir.debian.org/debian jessie main contrib" > /etc/apt/sources.list \
151bd88f6c56 DEP-12: update tomcat version and ms fonts installer
smith@nwoca.org
parents: 92
diff changeset
6 && echo "deb http://security.debian.org/ jessie/updates main contrib" >> /etc/apt/sources.list \
151bd88f6c56 DEP-12: update tomcat version and ms fonts installer
smith@nwoca.org
parents: 92
diff changeset
7 && echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | debconf-set-selections \
151bd88f6c56 DEP-12: update tomcat version and ms fonts installer
smith@nwoca.org
parents: 92
diff changeset
8 && apt-get update \
151bd88f6c56 DEP-12: update tomcat version and ms fonts installer
smith@nwoca.org
parents: 92
diff changeset
9 && apt-get install -y ttf-mscorefonts-installer \
151bd88f6c56 DEP-12: update tomcat version and ms fonts installer
smith@nwoca.org
parents: 92
diff changeset
10 && apt-get clean \
151bd88f6c56 DEP-12: update tomcat version and ms fonts installer
smith@nwoca.org
parents: 92
diff changeset
11 && apt-get autoremove -y \
151bd88f6c56 DEP-12: update tomcat version and ms fonts installer
smith@nwoca.org
parents: 92
diff changeset
12 && rm -rf /var/lib/apt/lists/*
151bd88f6c56 DEP-12: update tomcat version and ms fonts installer
smith@nwoca.org
parents: 92
diff changeset
13
117
912933cacd29 DEP-12: add experimental postgres-client to tomcat image
smith@nwoca.org
parents: 115
diff changeset
14 RUN apt-get update \
912933cacd29 DEP-12: add experimental postgres-client to tomcat image
smith@nwoca.org
parents: 115
diff changeset
15 && apt-get install -y postgresql-client \
912933cacd29 DEP-12: add experimental postgres-client to tomcat image
smith@nwoca.org
parents: 115
diff changeset
16 && apt-get clean \