We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b24483 commit cd869a0Copy full SHA for cd869a0
1 file changed
Dockerfile
@@ -32,6 +32,10 @@ RUN groupadd --gid ${USER_GID} mmoreuser \
32
&& useradd --uid ${USER_UID} --gid ${USER_GID} -m mmoreuser
33
34
WORKDIR /app
35
+RUN chown -R mmoreuser:mmoreuser /app
36
+
37
+USER mmoreuser
38
39
RUN python3 -m venv .venv \
40
&& .venv/bin/pip install --no-cache-dir uv
41
@@ -43,6 +47,4 @@ RUN .venv/bin/uv pip install --no-cache ${UV_ARGUMENTS} -e .
43
47
ENV PATH="/app/.venv/bin:$PATH"
44
48
ENV DASK_DISTRIBUTED__WORKER__DAEMON=False
45
49
46
-USER mmoreuser
-
50
ENTRYPOINT ["/bin/bash"]
0 commit comments