Added UID as argument

This commit is contained in:
Michele Adduci 2024-12-16 13:11:13 +01:00
parent 013b022427
commit 5fc03b6415
No known key found for this signature in database

View file

@ -7,6 +7,10 @@ RUN apk add --no-cache ffmpeg
RUN pip install markitdown
USER 10000:10000
# Default USERID and GROUPID
ARG USERID=10000
ARG GROUPID=10000
USER $USERID:$GROUPID
ENTRYPOINT [ "markitdown" ]