From a1cec7cc07adc71eaf63f32aaad8d95936abd5e1 Mon Sep 17 00:00:00 2001 From: Jody Garnett Date: Wed, 7 Jun 2023 20:49:29 -0700 Subject: [PATCH] Use jenkins build number to trigger a new download for re-release or nightly build This is required as --no-cache-filter is not supported by the version of docker used on the build server --- Dockerfile | 7 ++++--- RELEASE.md | 12 +++++++----- build/release.sh | 16 +++++++++------- 3 files changed, 20 insertions(+), 15 deletions(-) diff --git a/Dockerfile b/Dockerfile index b17ee63..114eb4d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -60,7 +60,7 @@ EOF FROM tomcat as download ARG GS_VERSION=2.23.1 -ARG GS_BUILD='' +ARG GS_BUILD=release ARG WAR_ZIP_URL=https://downloads.sourceforge.net/project/geoserver/GeoServer/${GS_VERSION}/geoserver-${GS_VERSION}-war.zip ENV GEOSERVER_VERSION=$GS_VERSION ENV GEOSERVER_BUILD=$GS_BUILD @@ -69,7 +69,7 @@ WORKDIR /tmp RUN <