From a3c8bdfe1d7323e7223d26d6e8102f6ab562c237 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 25 Oct 2025 11:47:43 +0000 Subject: [PATCH] chore(deps): update bellsoft/liberica-openjre-debian docker tag to v25 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index dfde9aa..745bc8a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Perform the extraction in a separate builder container -FROM bellsoft/liberica-openjre-debian:17-cds AS builder +FROM bellsoft/liberica-openjre-debian:25.0.1-cds AS builder WORKDIR /builder # This points to the built jar file in the target folder # Adjust this to 'build/libs/*.jar' if you're using Gradle @@ -10,7 +10,7 @@ COPY ${JAR_FILE} application.jar RUN java -Djarmode=tools -jar application.jar extract --layers --destination extracted # This is the runtime container -FROM bellsoft/liberica-openjre-debian:17-cds +FROM bellsoft/liberica-openjre-debian:25.0.1-cds WORKDIR /application # Copy the extracted jar contents from the builder container into the working directory in the runtime container # Every copy step creates a new docker layer