From 5cb17130db7cd940bc400bf118e08d655d2a4218 Mon Sep 17 00:00:00 2001 From: dave Date: Sun, 10 Nov 2024 09:37:53 -0500 Subject: [PATCH] fix duplicate uid --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index e3c29bf..ea9ff32 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,6 +29,7 @@ COPY --from=frontend /tmp/code/styles/dist/style.css /tmp/code/styles/dist/style RUN cd /tmp/code && \ pip3 install -r requirements.txt && \ python3 setup.py install && \ + userdel --remove ubuntu && \ useradd --uid 1000 app && \ rm -rf /tmp/code