Skip to content

Commit 1e0eed8

Browse files
authored
fix: update tomcat base image (#671)
* fix: update tomcat base image
1 parent 345648e commit 1e0eed8

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ COMPOSE_PROJECT_NAME=kartozageoserver
22
# ###############
33
# Build Arguments
44
# ###############
5-
IMAGE_VERSION=9.0.89-jdk11-temurin-focal
5+
IMAGE_VERSION=9.0.91-jdk11-temurin-focal
66
GS_VERSION=2.25.2
77
JAVA_HOME=/opt/java/openjdk
88
WAR_URL=http://downloads.sourceforge.net/project/geoserver/GeoServer/2.25.0/geoserver-2.25.0-war.zip

.github/workflows/build-latest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
geoserverMajorVersion:
6060
- 2
6161
imageVersion:
62-
- image: 9.0.89-jdk11-temurin-focal
62+
- image: 9.0.91-jdk11-temurin-focal
6363
javaHome: /opt/java/openjdk
6464
geoserverMinorVersion:
6565
- minor: 25

.github/workflows/deploy-image.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
geoserverMajorVersion:
2323
- 2
2424
imageVersion:
25-
- image: 9.0.89-jdk11-temurin-focal
25+
- image: 9.0.91-jdk11-temurin-focal
2626
javaHome: /opt/java/openjdk
2727
geoserverMinorVersion:
2828
- minor: 25

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
#--------- Generic stuff all our Dockerfiles should start with so we get caching ------------
3-
ARG IMAGE_VERSION=9.0.89-jdk11-temurin-focal
3+
ARG IMAGE_VERSION=9.0.91-jdk11-temurin-focal
44
ARG JAVA_HOME=/opt/java/openjdk
55

66
##############################################################################

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,19 +101,19 @@ for available tags.
101101

102102
```
103103
VERSION=2.25.2
104-
IMAGE_VERSION=9.0.89-jdk11-temurin-focal
104+
IMAGE_VERSION=9.0.91-jdk11-temurin-focal
105105
docker build --build-arg IMAGE_VERSION=${IMAGE_VERSION} --build-arg GS_VERSION=${VERSION} -t kartoza/geoserver:${VERSION} .
106106
```
107107

108108
For some recent builds, it is necessary to set the JAVA_PATH as well (e.g. Apache Tomcat/9.0.36)
109109
```
110-
docker build --build-arg IMAGE_VERSION=9.0.89-jdk11-temurin-focal --build-arg JAVA_HOME=/usr/local/openjdk-11/bin/java --build-arg GS_VERSION=2.25.2 -t kartoza/geoserver:2.25.2 .
110+
docker build --build-arg IMAGE_VERSION=9.0.91-jdk11-temurin-focal --build-arg JAVA_HOME=/usr/local/openjdk-11/bin/java --build-arg GS_VERSION=2.25.2 -t kartoza/geoserver:2.25.2 .
111111
```
112112

113113
**Note:** Please check the [GeoServer documentation](https://docs.geoserver.org/stable/en/user/production/index.html)
114114
to see which Tomcat versions are supported.
115115

116-
The current build uses the base image `tomcat:9.0.89-jdk11-temurin-focal` because of the dependency on
116+
The current build uses the base image `tomcat:9.0.91-jdk11-temurin-focal` because of the dependency on
117117
`libgdal-java`. The tomcat base images > focal will not
118118
have the java bindings for the [GDAL plugin](https://osgeo-org.atlassian.net/browse/GEOT-7412?focusedCommentId=84733)
119119
hence the container will not support the gdal plugin working is you build using base image > focal.

0 commit comments

Comments
 (0)