From 96c4356ab2102ef0de0ecd268759e3648920f4cb Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 25 Oct 2025 11:47:39 +0000 Subject: [PATCH] chore(deps): update bellsoft/liberica-openjre-debian docker tag to v17.0.17-cds --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index dfde9aa..c1295d5 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:17.0.17-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:17.0.17-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