# HG changeset patch # User Robin Fronk # Date 1713445742 -3600 # Node ID 4b026170dfeaef693a1219cdcbf7b6ff9dff0d00 # Parent cb688221b17bc75dd9b6ad06c3e8980fc41f41c3 SC-327: update tomcat image to 8.5.51 diff -r cb688221b17b -r 4b026170dfea tomcat/Dockerfile --- a/tomcat/Dockerfile Wed Apr 10 11:04:39 2024 -0400 +++ b/tomcat/Dockerfile Thu Apr 18 14:09:02 2024 +0100 @@ -1,11 +1,12 @@ -FROM tomcat:8.5.37-jre8 +FROM tomcat:8.5.51-jdk8 MAINTAINER Dave Smith -RUN echo "deb http://httpredir.debian.org/debian jessie main contrib" > /etc/apt/sources.list \ - && echo "deb http://security.debian.org/ jessie/updates main contrib" >> /etc/apt/sources.list \ - && echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | debconf-set-selections \ - && apt-get update \ +RUN echo "deb http://deb.debian.org/debian buster main contrib non-free" > /etc/apt/sources.list \ + && echo "deb http://security.debian.org/debian-security/ buster/updates main contrib" >> /etc/apt/sources.list \ + && echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | debconf-set-selections + +RUN apt-get update \ && apt-get install -y ttf-mscorefonts-installer \ && apt-get clean \ && apt-get autoremove -y \