comparison tomcat-17/Dockerfile @ 499:d51e12ec50cd

USASR-5154 remove postgres install
author belknapSSDT <zach.belknap@mcoecn.org>
date Fri, 29 Sep 2023 11:49:41 -0400
parents 0157a9283e5c
children d1b34e29916f
comparison
equal deleted inserted replaced
498:0157a9283e5c 499:d51e12ec50cd
18 RUN apt-get update \ 18 RUN apt-get update \
19 && apt-get install -y ttf-mscorefonts-installer \ 19 && apt-get install -y ttf-mscorefonts-installer \
20 && apt-get clean \ 20 && apt-get clean \
21 && apt-get autoremove -y \ 21 && apt-get autoremove -y \
22 && rm -rf /var/lib/apt/lists/* 22 && rm -rf /var/lib/apt/lists/*
23 23
24 RUN apt-get update \
25 && apt-get install -y postgresql-client \
26 && apt-get clean \
27 && apt-get autoremove -y \
28 && rm -rf /var/lib/apt/lists/*
29 24
30 WORKDIR /usr/local/tomcat 25 WORKDIR /usr/local/tomcat
31 26
32 COPY setenv.sh bin/ 27 COPY setenv.sh bin/
33 COPY tomcat-users.xml server.xml context.xml logging.properties conf/ 28 COPY tomcat-users.xml server.xml context.xml logging.properties conf/