From 8cc1c2b8f54269ddef50d54996af50d8fd996094 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Wed, 5 Apr 2023 12:27:35 +0200 Subject: [PATCH] Default to UID and GID 1000 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4fcb078..abb07b8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -69,7 +69,7 @@ COPY --from=builder \ /usr/src/patched_porobot/target/*/release/patched_porobot_matrix \ /usr/bin/ -USER ${UID}:${GID} +USER ${UID:-1000}:${GID:-1000} ENTRYPOINT [] CMD []