From f91be8666236ee67fd776b3cf8576449ba808fab Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 17 Dec 2024 18:40:28 -0800 Subject: [PATCH] build: Use uv for faster pip installs in Dockerfile --- benchmark/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/benchmark/Dockerfile b/benchmark/Dockerfile index a7c8e4c13..053298324 100644 --- a/benchmark/Dockerfile +++ b/benchmark/Dockerfile @@ -32,7 +32,7 @@ RUN chmod +x /tmp/rustup.sh && /tmp/rustup.sh -y && rm /tmp/rustup.sh ENV PATH="/root/.cargo/bin:${PATH}" COPY . /aider -RUN pip3 install --no-cache-dir --upgrade pip -RUN pip3 install --no-cache-dir -e /aider[dev] +RUN pip3 install --no-cache-dir --upgrade pip uv +RUN uv pip install --system --no-cache-dir -e /aider[dev] RUN git config --global --add safe.directory /aider WORKDIR /aider