From 56fcad1c2369bd2e6de4528634e38328380fa953 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 15 Oct 2023 15:50:58 +0000 Subject: [PATCH] chore(deps): update eclipse-temurin docker tag to v21 --- cli/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/Dockerfile b/cli/Dockerfile index 18755094..d521c291 100644 --- a/cli/Dockerfile +++ b/cli/Dockerfile @@ -1,4 +1,4 @@ -FROM eclipse-temurin:17.0.8_7-jre as build +FROM eclipse-temurin:21-jre as build ARG VERSION="" @@ -6,7 +6,7 @@ ADD target/text2confl${VERSION}-dist/text2confl /opt/app RUN find /opt/app -exec touch -t 200001010101 {} \; -FROM eclipse-temurin:17.0.8_7-jre +FROM eclipse-temurin:21-jre LABEL org.opencontainers.image.source="https://github.com/zeldigas/text2confl"