From fc6dfd444d43aaf60604584da8cc287197ac089d Mon Sep 17 00:00:00 2001 From: Simon Bennetts Date: Mon, 11 May 2026 12:55:54 +0100 Subject: [PATCH] Updated to use Tomcat 9.0.117. Signed-off-by: Simon Bennetts --- CHANGELOG.md | 4 ++++ Dockerfile | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c2fd64..d21d80b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## 2026-05-11 +### Changed +- Updated to use Tomcat 9.0.117. + ## 2025-09-08 ### Changed - Updated to use Tomcat 9.0.109. diff --git a/Dockerfile b/Dockerfile index 4b04c5a..5079b81 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ RUN apt-get update && apt-get install -y \ ENV CATALINA_HOME=/opt/tomcat ENV PATH=$CATALINA_HOME/bin:$PATH -ENV TOMCAT_VERSION=9.0.109 +ENV TOMCAT_VERSION=9.0.117 RUN wget https://downloads.apache.org/tomcat/tomcat-9/v${TOMCAT_VERSION}/bin/apache-tomcat-${TOMCAT_VERSION}.tar.gz \ && mkdir -p /opt/tomcat \ && tar xzvf apache-tomcat-${TOMCAT_VERSION}.tar.gz -C /opt/tomcat --strip-components=1 \