From 6c4613d899ed295352de4d715bc051b25ca654c2 Mon Sep 17 00:00:00 2001 From: Arne Baeumler Date: Sun, 18 Jan 2026 13:27:03 +0100 Subject: [PATCH] fix: add USER --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 717934e..a99b0a5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,10 @@ RUN pip install --no-cache-dir -r requirements.txt # Copy the current directory contents into the container at /app COPY . . +RUN chown -R 1001:1001 /app + +USER 1001 + # Make port 9080 available to the world outside this container EXPOSE 9080