From 3450ad2e029721d7caf48d997b7fa4d4c771467b Mon Sep 17 00:00:00 2001 From: Jeremias Weber Date: Mon, 10 Jun 2024 10:07:36 +0200 Subject: [PATCH] #142 Update base images --- CHANGELOG.md | 1 + Dockerfile | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 21b071e2..08d8c9cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Removed - [#142] Remove state since it is not used +- [#142] Update base image to java:8u402-1 ## [v1.14.3-1] - 2024-06-03 ### Fixed diff --git a/Dockerfile b/Dockerfile index 684f10c4..d8c8325b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ COPY app/ . RUN ./mvnw package -FROM registry.cloudogu.com/official/base:3.17.3-2 as tomcat +FROM registry.cloudogu.com/official/base:3.19.1-2 as tomcat ARG TOMCAT_MAJOR_VERSION ARG TOMCAT_VERSION @@ -38,7 +38,7 @@ RUN set -eux && \ && rm "apache-tomcat-${TOMCAT_VERSION}.tar" -FROM registry.cloudogu.com/official/java:8u392-1 AS binaryConcentrator +FROM registry.cloudogu.com/official/java:8u402-1 AS binaryConcentrator # Prepare all file system actions here to achieve a simpler dogu build below. # Also this allows the developers to act on a finer granularity when it comes to file system changes ARG TOMCAT_VERSION @@ -68,7 +68,7 @@ RUN set -eux \ RUN chown -R tomcat:tomcat /opt/apache-tomcat -FROM registry.cloudogu.com/official/java:8u392-1 +FROM registry.cloudogu.com/official/java:8u402-1 ARG TOMCAT_VERSION