From 17ccfb954dfa60fd9b92896544de95fc09a9c2e9 Mon Sep 17 00:00:00 2001 From: Amit Kumar Deohoria Date: Sun, 19 Oct 2025 18:38:53 +0530 Subject: [PATCH] Issue #957: Upgrade groovy version in maven-build-image --- devops/docker/maven-build-image/jdk-8u162b12/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/devops/docker/maven-build-image/jdk-8u162b12/Dockerfile b/devops/docker/maven-build-image/jdk-8u162b12/Dockerfile index 3df4161c..b2be65c7 100644 --- a/devops/docker/maven-build-image/jdk-8u162b12/Dockerfile +++ b/devops/docker/maven-build-image/jdk-8u162b12/Dockerfile @@ -1,12 +1,12 @@ FROM anapsix/alpine-java:8u162b12_jdk ############################# Install tools and deps ######################################### -RUN apk update && apk add --no-cache curl tar bash procps git openssh htop xmlstarlet libxslt +RUN apk update && apk add --no-cache curl tar bash procps git openssh htop xmlstarlet libxslt ############################# End Install tools and deps ##################################### ############################# Install Groovy ################################ ENV GROOVY_HOME /opt/groovy -ARG GROOVY_VERSION=2.4.15 +ARG GROOVY_VERSION=5.0.0 RUN set -o errexit -o nounset && echo "Installing build dependencies" && \ apk add --no-cache --virtual .build-deps ca-certificates gnupg openssl unzip && \