File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -43,7 +43,8 @@ WORKDIR /home/$DOCKER_USER
4343ENV PATH="/home/$DOCKER_USER/.local/bin:${PATH}"
4444
4545# Install uv for quicker package installations (installed to ~/.local/bin with --user)
46- RUN python -m pip install --user uv==0.9.29
46+ ENV UV_NO_CACHE=1
47+ RUN python -m pip install --no-cache-dir --user uv==0.9.29
4748
4849# Create virtual environment with uv
4950RUN uv venv /home/$DOCKER_USER/.venv
Original file line number Diff line number Diff line change @@ -38,7 +38,8 @@ WORKDIR /home/$DOCKER_USER
3838ENV PATH="/home/$DOCKER_USER/.local/bin:${PATH}"
3939
4040# Install uv for quicker package installations (installed to ~/.local/bin with --user)
41- RUN python -m pip install --user uv==0.9.29
41+ ENV UV_NO_CACHE=1
42+ RUN python -m pip install --no-cache-dir --user uv==0.9.29
4243
4344# Create virtual environment with uv
4445RUN uv venv /home/$DOCKER_USER/.venv
You can’t perform that action at this time.
0 commit comments