From 28ac451294725367d36089d9d81aa16f86010aac Mon Sep 17 00:00:00 2001 From: Peter Siegmund Date: Mon, 20 Apr 2026 08:52:48 +0000 Subject: [PATCH] Update eclipse-temurin Docker tag to v26 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8aafd7d..d322f47 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Stage that builds the application, a prerequisite for the running stage -FROM eclipse-temurin:21-jdk-noble AS build +FROM eclipse-temurin:26-jdk-noble AS build RUN apt-get update -qq @@ -20,7 +20,7 @@ RUN curl -OL https://github.com/open-telemetry/opentelemetry-java-instrumentatio RUN ./mvnw --batch-mode clean verify -DskipTests # Running stage: the part that is used for running the application -FROM eclipse-temurin:21-jre-noble +FROM eclipse-temurin:26-jre-noble RUN useradd -m app USER app