You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Docker image builds are failing. I tracked the problem to a change in the parent Tomcat image "9-jdk11-temurin"
The docker image with that tag has beed re-pushed with an update to the Ubuntu ditro version from 22.04 to 24.04 and we now have an ID conflict with the tomcat user creation in the Dockerfile:
#34 [stage-1 12/16] RUN groupadd -g 1000 tomcat
#34 0.341 groupadd: GID '1000' already exists
#34 ERROR: process "/bin/sh -c groupadd -g $GID $UNAME" did not complete successfully: exit code: 4
------
> [stage-1 12/16] RUN groupadd -g 1000 tomcat:
0.341 groupadd: GID '1000' already exists
------
Dockerfile:140
--------------------
138 | COPY entrypoint.sh /entrypoint.sh
139 | COPY ${CUSTOM_FONTS} $GEOSERVER_DATA_DIR/styles/
140 | >>> RUN groupadd -g $GID $UNAME
141 | RUN useradd -m -u $UID -g $GID --system $UNAME
142 | RUN chown -R $UID:$GID $GEOSERVER_LOG_DIR $CATALINA_BASE $GEOWEBCACHE_CACHE_DIR $GEOWEBCACHE_CONFIG_DIR $NETCDF_DATA_DIR $GRIB_CACHE_DIR $GEOSERVER_DATA_DIR
--------------------
ERROR: failed to solve: process "/bin/sh -c groupadd -g $GID $UNAME" did not complete successfully: exit code: 4
The text was updated successfully, but these errors were encountered:
#159 should fix the builds by forcing the Ubuntu "Jammy" variant of the Tomcat base image. For the long term we'll need a change in the Dockerfile that allow us to build the images based on Ubuntu Noble 24.04
Docker image builds are failing. I tracked the problem to a change in the parent Tomcat image "9-jdk11-temurin"
The docker image with that tag has beed re-pushed with an update to the Ubuntu ditro version from 22.04 to 24.04 and we now have an ID conflict with the tomcat user creation in the Dockerfile:
The text was updated successfully, but these errors were encountered: