1
Fork 0
mirror of https://github.com/Steffo99/patched-porobot.git synced 2024-10-16 09:37:27 +00:00

Default to UID and GID 1000

This commit is contained in:
Steffo 2023-04-05 12:27:35 +02:00 committed by GitHub
parent 29e3853867
commit 8cc1c2b8f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -69,7 +69,7 @@ COPY --from=builder \
/usr/src/patched_porobot/target/*/release/patched_porobot_matrix \ /usr/src/patched_porobot/target/*/release/patched_porobot_matrix \
/usr/bin/ /usr/bin/
USER ${UID}:${GID} USER ${UID:-1000}:${GID:-1000}
ENTRYPOINT [] ENTRYPOINT []
CMD [] CMD []