Skip to content

Commit

Permalink
#142 Update base images
Browse files Browse the repository at this point in the history
  • Loading branch information
jelemux committed Jun 10, 2024
1 parent fed2f0c commit 3450ad2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit 3450ad2

Please sign in to comment.