From 4da26d329f0cdddb1d75c4f0c2d3dc7a38c3a864 Mon Sep 17 00:00:00 2001 From: Sebastian Yaghoubi Date: Thu, 26 Dec 2024 12:29:15 -0800 Subject: [PATCH] fix(docker): use generic nobody nogroup default instead of uid gid Signed-off-by: Sebastian Yaghoubi --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b4f48e2..ebe4f78 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,8 +13,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ RUN pip install markitdown # Default USERID and GROUPID -ARG USERID=10000 -ARG GROUPID=10000 +ARG USERID=nobody +ARG GROUPID=nogroup USER $USERID:$GROUPID