From 98a6d383ab8e0f025cbc0ae30759987847cb2775 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sun, 22 Oct 2023 11:22:17 -0700 Subject: [PATCH] Updated Dockerfile to upgrade pip before installing dependencies. --- benchmark/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/benchmark/Dockerfile b/benchmark/Dockerfile index ac552e877..78705d000 100644 --- a/benchmark/Dockerfile +++ b/benchmark/Dockerfile @@ -1,8 +1,8 @@ FROM python:3.10-slim RUN apt-get update && apt-get install -y less git COPY requirements.txt /aider/requirements.txt +RUN pip install --upgrade pip RUN pip install lox typer pandas matplotlib imgcat aider-chat -RUN pip install --upgrade pip && pip install -r /aider/requirements.txt +RUN pip install -r /aider/requirements.txt RUN git config --global --add safe.directory /aider WORKDIR /aider -