From 9e045d7182d0f7e8e1eb5d15bc0b1fa8b39f8f0e Mon Sep 17 00:00:00 2001 From: Bart Jeukendrup Date: Tue, 27 Feb 2024 19:08:27 +0100 Subject: [PATCH] Add commons-math3-3.6.1 to Geoserver directory --- Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Dockerfile b/Dockerfile index a78f534..5ee0b63 100644 --- a/Dockerfile +++ b/Dockerfile @@ -142,6 +142,12 @@ RUN wget --progress=bar:force:noscroll -c \ -O /opt/additional_libs/geoserver-${STABLE_EXTENSIONS_VERSION}-SNAPSHOT-monitor-plugin.zip && \ unzip -q -o -d ${GEOSERVER_LIB_DIR} /opt/additional_libs/geoserver-${STABLE_EXTENSIONS_VERSION}-SNAPSHOT-monitor-plugin.zip "*.jar" +# Commons-math3 is used by the monitoring plugin +RUN wget --progress=bar:force:noscroll -c \ + https://downloads.apache.org/commons/math/binaries/commons-math3-3.6.1-bin.zip \ + -O /opt/additional_libs/commons-math3-3.6.1-bin.zip && \ + unzip -q -o -d ${GEOSERVER_LIB_DIR} /opt/additional_libs/commons-math3-3.6.1-bin.zip "commons-math3-3.6.1/commons-math3-3.6.1.jar" + # Cloud Optimized GeoTIFF plugin RUN wget --progress=bar:force:noscroll -c \ ${COMMUNITY_EXTENSIONS_URL}/geoserver-${COMMUNITY_EXTENSIONS_VERSION}-SNAPSHOT-cog-plugin.zip \