comparison tomcat/Dockerfile @ 117:912933cacd29

DEP-12: add experimental postgres-client to tomcat image
author smith@nwoca.org
date Fri, 28 Apr 2017 13:54:20 -0400
parents 151bd88f6c56
children d64806928eca
comparison
equal deleted inserted replaced
116:4b8eb7301ae0 117:912933cacd29
9 && apt-get install -y ttf-mscorefonts-installer \ 9 && apt-get install -y ttf-mscorefonts-installer \
10 && apt-get clean \ 10 && apt-get clean \
11 && apt-get autoremove -y \ 11 && apt-get autoremove -y \
12 && rm -rf /var/lib/apt/lists/* 12 && rm -rf /var/lib/apt/lists/*
13 13
14 RUN apt-get update \
15 && apt-get install -y postgresql-client \
16 && apt-get clean \
17 && apt-get autoremove -y \
18 && rm -rf /var/lib/apt/lists/*
19
14 WORKDIR /usr/local/tomcat 20 WORKDIR /usr/local/tomcat
15 21
16 COPY setenv.sh bin/ 22 COPY setenv.sh bin/
17 COPY tomcat-users.xml server.xml context.xml logging.properties conf/ 23 COPY tomcat-users.xml server.xml context.xml logging.properties conf/
18 24