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 9319514 commit dda8110Copy full SHA for dda8110
docker/Dockerfile.cpu
@@ -18,6 +18,8 @@ WORKDIR /workspace/
18
ARG PYTHON_VERSION=3.12
19
ARG PIP_EXTRA_INDEX_URL="https://download.pytorch.org/whl/cpu"
20
21
+ENV LD_PRELOAD=""
22
+
23
# Install minimal dependencies and uv
24
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
25
--mount=type=cache,target=/var/lib/apt,sharing=locked \
@@ -32,6 +34,7 @@ ENV CMAKE_CXX_COMPILER_LAUNCHER=ccache
32
34
33
35
ENV PATH="/root/.local/bin:$PATH"
36
ENV VIRTUAL_ENV="/opt/venv"
37
+ENV UV_PYTHON_INSTALL_DIR=/opt/uv/python
38
RUN uv venv --python ${PYTHON_VERSION} --seed ${VIRTUAL_ENV}
39
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
40
0 commit comments