comparison tomcat-17/Dockerfile @ 494:d3c2c169e8eb

USASR-5154 try adding to sources.list
author belknapSSDT <zach.belknap@mcoecn.org>
date Fri, 29 Sep 2023 10:32:52 -0400
parents e29026560b41
children ee980c0dc774
comparison
equal deleted inserted replaced
493:e29026560b41 494:d3c2c169e8eb
1 FROM tomcat:8.5.93-jre17-temurin-jammy 1 FROM tomcat:8.5.93-jre17-temurin-jammy
2 2
3 MAINTAINER Marc Davis <davis@ssdt-ohio.org> 3 MAINTAINER Marc Davis <davis@ssdt-ohio.org>
4 4
5 RUN cat /etc/lsb-release && apt-get update && apt-get install -y gnupg && apt-get install -y apt-transport-https && apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 871920D1991BC93C \ 5 RUN cat /etc/lsb-release && apt-get update && apt-get install -y gnupg && apt-get install -y apt-transport-https && \
6 && apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 112695A0E562B32A && apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys AA8E81B4331F7F50 \ 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 && apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 04EE7237B7D453EC 648ACFD622F3D138 0E98404D386FA1D9 EF0F382A1A7B6500 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 \
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
8 10
9 RUN apt-get update && apt-get install -y x11-common 11 RUN apt-get update && apt-get install -y x11-common
10 12
11 RUN 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 \
12 && 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
13
14
15 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 \
16 && 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 "deb http://deb.debian.org/debian stretch-updates main contrib" >> /etc/apt/sources.list \
17 && echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | debconf-set-selections 16 && echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | debconf-set-selections
18 17
19 18
20 RUN apt-get update \ 19 RUN apt-get update \
21 && apt-get install -y ttf-mscorefonts-installer \ 20 && apt-get install -y ttf-mscorefonts-installer \