From e9e0de5c31520f0793abd21a3c8a9b5d34a2a68f Mon Sep 17 00:00:00 2001 From: Peter Siegmund Date: Sat, 12 Oct 2024 22:09:33 +0200 Subject: [PATCH] latest ubuntu with lts in docker container Signed-off-by: Peter Siegmund --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 58211cb..f4a0619 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-jammy AS build +FROM eclipse-temurin:21-jdk-noble AS build ARG SERVICE_ROOT @@ -22,7 +22,7 @@ COPY --chown=app:app ${SERVICE_ROOT}/src ./src RUN ./gradlew clean build -x test # Running stage: the part that is used for running the application -FROM eclipse-temurin:21-jre-jammy +FROM eclipse-temurin:21-jre-noble RUN useradd -m app USER app