changeset 527:4b026170dfea tip

SC-327: update tomcat image to 8.5.51
author Robin Fronk <robin.fronk@mcoecn.org>
date Thu, 18 Apr 2024 14:09:02 +0100
parents cb688221b17b
children
files tomcat/Dockerfile
diffstat 1 files changed, 6 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- 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 <smith@nwoca.org>
 
-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 \