We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 488d004 + 4478706 commit a46d8fcCopy full SHA for a46d8fc
Dockerfile
@@ -21,9 +21,10 @@ RUN mv data/docker_config.yml data/config.yml
21
# Copy the uv binary into the container
22
COPY --from=ghcr.io/astral-sh/uv:latest /uv /bin/uv
23
24
-# Create cache directory for uv and set permissions
+# Create cache and local directories for uv and set permissions
25
RUN mkdir -p /home/appuser/.cache/uv && \
26
- chown -R appuser:appuser /home/appuser/.cache
+ mkdir -p /home/appuser/.local/share/uv && \
27
+ chown -R appuser:appuser /home/appuser
28
29
# Set ownership of the working directory to the non-root user
30
RUN chown -R appuser:appuser /app
0 commit comments