fix(docker): use generic nobody nogroup default instead of uid gid

Signed-off-by: Sebastian Yaghoubi <sebastianyaghoubi@gmail.com>
This commit is contained in:
Sebastian Yaghoubi 2024-12-26 12:29:15 -08:00
parent 1c017879fc
commit 4da26d329f
No known key found for this signature in database
GPG key ID: 563B612A0D06FC4F

View file

@ -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