diff options
author | 2025-04-15 23:04:27 +0100 | |
---|---|---|
committer | 2025-04-15 23:04:27 +0100 | |
commit | 4479bed2d53bf5a34b66a7891a137a007fe332db (patch) | |
tree | f20efeec3b27cd666bd94893c17b66ede4f3b07f | |
parent | Create user with id 1000 in the dockerfile (diff) |
Create a home directory for king arthur
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" |