Skip to content

Commit c4029a8

Browse files
committed
fix(docker): add --no-cache-dir to pip install uv (DL3042)
1 parent ad38a42 commit c4029a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ RUN apt-get update && \
1717
# uv export reads uv.lock to produce a pinned, reproducible dependency list;
1818
# pip wheel compiles each resolved package into a .whl file for offline installation
1919
COPY --chown=root:root --chmod=644 pyproject.toml uv.lock ./
20-
RUN pip install uv --quiet && \
20+
RUN pip install --no-cache-dir uv --quiet && \
2121
uv export --no-hashes | pip wheel --no-cache-dir --wheel-dir=/app/wheelhouse -r /dev/stdin
2222

2323
# ------------------------------------------------------------------------------

0 commit comments

Comments
 (0)