From dfda0e5c7c933436fb509f8ab2ed8884c094405d Mon Sep 17 00:00:00 2001 From: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Date: Mon, 19 May 2025 18:22:24 +1200 Subject: [PATCH] [docker] Update pip on build (#8835) Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: J. Nick Koston --- docker/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 39dc1c7f28..64ce67e819 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -11,7 +11,9 @@ FROM base-source-${BUILD_TYPE} AS base RUN git config --system --add safe.directory "*" -RUN pip install uv==0.6.14 +ENV PIP_DISABLE_PIP_VERSION_CHECK=1 + +RUN pip install --no-cache-dir -U pip uv==0.6.14 COPY requirements.txt /