changeset 500:d1b34e29916f

USASR-5154 install libinfo
author belknapSSDT <zach.belknap@mcoecn.org>
date Fri, 29 Sep 2023 11:53:00 -0400
parents d51e12ec50cd
children 0dea70088793
files tomcat-17/Dockerfile
diffstat 1 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/tomcat-17/Dockerfile	Fri Sep 29 11:49:41 2023 -0400
+++ b/tomcat-17/Dockerfile	Fri Sep 29 11:53:00 2023 -0400
@@ -8,7 +8,7 @@
     && apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 871920D1991BC93C && apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 112695A0E562B32A  \
     && apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys AA8E81B4331F7F50 && apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 04EE7237B7D453EC 648ACFD622F3D138 0E98404D386FA1D9 EF0F382A1A7B6500
 
-RUN apt-get update && apt-get install -y x11-common
+RUN apt-get update && apt-get install -y x11-common && apt-get install libncurses5-dev libncursesw5-dev
 
 RUN echo "deb http://archive.debian.org/debian/ stretch main contrib" > /etc/apt/sources.list \
     && echo "deb http://archive.debian.org/debian-security/ stretch/updates main contrib" >> /etc/apt/sources.list \
@@ -21,6 +21,11 @@
     && apt-get autoremove -y \
     && rm -rf /var/lib/apt/lists/*
 
+RUN apt-get update \
+    && apt-get install -y postgresql-client  \
+    && apt-get clean \
+    && apt-get autoremove -y \
+    && rm -rf /var/lib/apt/lists/*
 
 WORKDIR /usr/local/tomcat