aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2025-04-15 23:04:27 +0100
committerGravatar Chris Lovering <[email protected]>2025-04-15 23:04:27 +0100
commit4479bed2d53bf5a34b66a7891a137a007fe332db (patch)
treef20efeec3b27cd666bd94893c17b66ede4f3b07f
parentCreate user with id 1000 in the dockerfile (diff)
Create a home directory for king arthur
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 4b2a7ee..497a17b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -27,7 +27,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \
FROM python:$python_version
# Create user 1000 so that the runAsUser has a username
-RUN useradd kingarthur -u 1000
+RUN useradd kingarthur -u 1000 -m
# Set Git SHA environment variable for Sentry
ARG git_sha="development"