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 7ed3893 commit 3530becCopy full SHA for 3530bec
Dockerfile
@@ -46,3 +46,9 @@ RUN /root/terminal-config/ensure-user-terminal-config.sh && \
46
# Install uv using the official image
47
# See https://docs.astral.sh/uv/guides/integration/docker/#installing-uv
48
COPY --from=ghcr.io/astral-sh/uv:0.8 /uv /uvx /bin/
49
+
50
+# We recommend mounting in a cache for uv, so silence warnings about it being on a different volume
51
+# and cache python interpreter downloads in the same directory
52
+# https://docs.astral.sh/uv/guides/integration/docker/#caching
53
+ENV UV_LINK_MODE=copy
54
+ENV UV_PYTHON_CACHE_DIR=/root/.cache/uv/python
0 commit comments