From aee05d0506ca202e50fdd3202f19fedc77ea1779 Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Fri, 19 Jan 2024 09:36:56 +0200 Subject: [PATCH] Use the same GID/UID as other Temporal projects Other Temporal containers use UID/GID = 1000, see for example here https://github.com/temporalio/helm-charts/blob/master/values.yaml#L88 Web UI is the only one using UID 5000, so this patch fixes this inconsistency. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index fac4dafbd8..484bd36534 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,8 +20,8 @@ ARG TEMPORAL_CLOUD_UI="false" WORKDIR /home/ui-server -RUN addgroup -g 5000 temporal -RUN adduser -u 5000 -G temporal -D temporal +RUN addgroup -g 1000 temporal +RUN adduser -u 1000 -G temporal -D temporal RUN mkdir ./config