From ce01994b3bbb5e8f6de78d74fc2e300515676792 Mon Sep 17 00:00:00 2001 From: "andreas.dinauer" Date: Mon, 17 Nov 2025 21:41:15 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Switch=20image?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3b275cf..7dbc6a4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,10 +2,6 @@ FROM eclipse-temurin:21-jdk ENV LANGUAGE='en_US:en' -WORKDIR /root - -RUN useradd -m quarkus - WORKDIR /etc/build # We make four distinct layers so if there are application changes the library layers can be re-used @@ -16,8 +12,6 @@ COPY target/quarkus-app/quarkus/ /deployments/quarkus/ EXPOSE 8080 -USER quarkus - ENV JAVA_OPTS_APPEND="-Dquarkus.http.host=0.0.0.0" ENV JAVA_APP_JAR="/deployments/quarkus-run.jar"