annotate tomcat-17/Dockerfile @ 440:2f056eca324e

USASR-5154 add keys to tomcat
author belknapSSDT <zach.belknap@mcoecn.org>
date Wed, 27 Sep 2023 14:01:58 -0400
parents 04216320f537
children cb31de9db860
rev   line source
427
2201156ad763 USASR-5154 added tomcat for java 17
belknapSSDT <zach.belknap@mcoecn.org>
parents: 289
diff changeset
1 FROM tomcat:8.5.93-jre17
4
b5534ea9a4cb initial tomcat dockerfile
smith@nwoca.org
parents:
diff changeset
2
428
2a6846bde6ff USASR-5154 updated maintainer
belknapSSDT <zach.belknap@mcoecn.org>
parents: 427
diff changeset
3 MAINTAINER Marc Davis <davis@ssdt-ohio.org>
4
b5534ea9a4cb initial tomcat dockerfile
smith@nwoca.org
parents:
diff changeset
4
433
04216320f537 fix url's for archived debian versions
davis@ssdt-ohio.org
parents: 428
diff changeset
5 RUN echo "deb http://archive.debian.org/debian/ jessie main contrib" > /etc/apt/sources.list \
04216320f537 fix url's for archived debian versions
davis@ssdt-ohio.org
parents: 428
diff changeset
6 && echo "deb http://archive.debian.org/debian-security/ jessie/updates main contrib" >> /etc/apt/sources.list \
440
2f056eca324e USASR-5154 add keys to tomcat
belknapSSDT <zach.belknap@mcoecn.org>
parents: 433
diff changeset
7 && echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | debconf-set-selections
2f056eca324e USASR-5154 add keys to tomcat
belknapSSDT <zach.belknap@mcoecn.org>
parents: 433
diff changeset
8
2f056eca324e USASR-5154 add keys to tomcat
belknapSSDT <zach.belknap@mcoecn.org>
parents: 433
diff changeset
9 RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 9D6D8F6BC857C906 \
2f056eca324e USASR-5154 add keys to tomcat
belknapSSDT <zach.belknap@mcoecn.org>
parents: 433
diff changeset
10 && apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys AA8E81B4331F7F50
2f056eca324e USASR-5154 add keys to tomcat
belknapSSDT <zach.belknap@mcoecn.org>
parents: 433
diff changeset
11
2f056eca324e USASR-5154 add keys to tomcat
belknapSSDT <zach.belknap@mcoecn.org>
parents: 433
diff changeset
12
2f056eca324e USASR-5154 add keys to tomcat
belknapSSDT <zach.belknap@mcoecn.org>
parents: 433
diff changeset
13 RUN apt-get update \
115
151bd88f6c56 DEP-12: update tomcat version and ms fonts installer
smith@nwoca.org
parents: 92
diff changeset
14 && apt-get install -y ttf-mscorefonts-installer \
151bd88f6c56 DEP-12: update tomcat version and ms fonts installer
smith@nwoca.org
parents: 92
diff changeset
15 && apt-get clean \
151bd88f6c56 DEP-12: update tomcat version and ms fonts installer
smith@nwoca.org
parents: 92
diff changeset
16 && apt-get autoremove -y \
151bd88f6c56 DEP-12: update tomcat version and ms fonts installer
smith@nwoca.org
parents: 92
diff changeset
17 && rm -rf /var/lib/apt/lists/*
151bd88f6c56 DEP-12: update tomcat version and ms fonts installer
smith@nwoca.org
parents: 92
diff changeset
18
117
912933cacd29 DEP-12: add experimental postgres-client to tomcat image
smith@nwoca.org
parents: 115
diff changeset
19 RUN apt-get update \
912933cacd29 DEP-12: add experimental postgres-client to tomcat image
smith@nwoca.org
parents: 115
diff changeset
20 && apt-get install -y postgresql-client \
912933cacd29 DEP-12: add experimental postgres-client to tomcat image
smith@nwoca.org
parents: 115
diff changeset
21 && apt-get clean \
912933cacd29 DEP-12: add experimental postgres-client to tomcat image
smith@nwoca.org
parents: 115
diff changeset
22 && apt-get autoremove -y \
912933cacd29 DEP-12: add experimental postgres-client to tomcat image
smith@nwoca.org
parents: 115
diff changeset
23 && rm -rf /var/lib/apt/lists/*
912933cacd29 DEP-12: add experimental postgres-client to tomcat image
smith@nwoca.org
parents: 115
diff changeset
24
9
b65e777478f3 remove admin script from image
smith@nwoca.org
parents: 7
diff changeset
25 WORKDIR /usr/local/tomcat
5
9b74645ce4a4 add setenv file
smith@nwoca.org
parents: 4
diff changeset
26
9
b65e777478f3 remove admin script from image
smith@nwoca.org
parents: 7
diff changeset
27 COPY setenv.sh bin/
92
120fc16ea511 USASR-2388: update tomcat. customize logging. disable autodepoy.
smith@nwoca.org
parents: 81
diff changeset
28 COPY tomcat-users.xml server.xml context.xml logging.properties conf/
5
9b74645ce4a4 add setenv file
smith@nwoca.org
parents: 4
diff changeset
29
9
b65e777478f3 remove admin script from image
smith@nwoca.org
parents: 7
diff changeset
30 RUN rm -rf webapps/docs webapps/ROOT webapps/examples webapps/docs webapps/host-manager \
b65e777478f3 remove admin script from image
smith@nwoca.org
parents: 7
diff changeset
31 && chmod +x bin/setenv.sh
81
53671513b240 DEP-10: add timezone and locale settings. add java base image. add native APR for tomcat
smith@nwoca.org
parents: 23
diff changeset
32
53671513b240 DEP-10: add timezone and locale settings. add java base image. add native APR for tomcat
smith@nwoca.org
parents: 23
diff changeset
33 ENV TZ=America/New_York