comparison tomcat-17/Dockerfile @ 503:4c142efa6060

USASR-5154 move force
author belknapSSDT <zach.belknap@mcoecn.org>
date Fri, 29 Sep 2023 12:09:11 -0400
parents e00cf35d7cf6
children 96d420336e31
comparison
equal deleted inserted replaced
502:e00cf35d7cf6 503:4c142efa6060
6 && gpg --no-default-keyring --keyring /etc/apt/trusted.gpg.d/ubuntu-keyring-2012-cdimage.gpg --export > /etc/apt/trusted.gpg.d/ubuntu-keyring.fixed.gpg \ 6 && gpg --no-default-keyring --keyring /etc/apt/trusted.gpg.d/ubuntu-keyring-2012-cdimage.gpg --export > /etc/apt/trusted.gpg.d/ubuntu-keyring.fixed.gpg \
7 && gpg --no-default-keyring --keyring /etc/apt/trusted.gpg.d/ubuntu-keyring-2018-archive.gpg --export > /etc/apt/trusted.gpg.d/ubuntu-keyring.fixed.gpg \ 7 && gpg --no-default-keyring --keyring /etc/apt/trusted.gpg.d/ubuntu-keyring-2018-archive.gpg --export > /etc/apt/trusted.gpg.d/ubuntu-keyring.fixed.gpg \
8 && apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 871920D1991BC93C && apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 112695A0E562B32A \ 8 && apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 871920D1991BC93C && apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 112695A0E562B32A \
9 && 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 9 && 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
10 10
11 RUN apt-get update && apt-get install -y x11-common && apt-get install -y -f libncurses5-dev libncursesw5-dev 11 RUN apt-get update && apt-get install -y x11-common && apt-get -f install -y libncurses5 libtinfo5
12 12
13 RUN echo "deb http://archive.debian.org/debian/ stretch main contrib" > /etc/apt/sources.list \ 13 RUN echo "deb http://archive.debian.org/debian/ stretch main contrib" > /etc/apt/sources.list \
14 && echo "deb http://archive.debian.org/debian-security/ stretch/updates main contrib" >> /etc/apt/sources.list \ 14 && echo "deb http://archive.debian.org/debian-security/ stretch/updates main contrib" >> /etc/apt/sources.list \
15 && echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | debconf-set-selections 15 && echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | debconf-set-selections
16 16
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 \ 24 RUN apt-get update \
25 && apt-get install -y -f postgresql-client \ 25 && apt-get -f install -y postgresql-client \
26 && apt-get clean \ 26 && apt-get clean \
27 && apt-get autoremove -y \ 27 && apt-get autoremove -y \
28 && rm -rf /var/lib/apt/lists/* 28 && rm -rf /var/lib/apt/lists/*
29 29
30 WORKDIR /usr/local/tomcat 30 WORKDIR /usr/local/tomcat