Updated dev-requirements.in to include all benchmark dependencies

This commit is contained in:
Paul Gauthier 2023-11-06 13:08:48 -08:00
parent af71638b06
commit 44388dbc6d
3 changed files with 117 additions and 3 deletions

View file

@ -2,8 +2,9 @@ FROM python:3.10-slim
RUN apt-get update
RUN apt-get install -y less git build-essential
COPY requirements.txt /aider/requirements.txt
COPY dev-requirements.txt /aider/dev-requirements.txt
RUN pip install --upgrade pip
RUN pip install lox typer pandas matplotlib imgcat aider-chat
RUN pip install -r /aider/requirements.txt
RUN pip install -r /aider/dev-requirements.txt
RUN git config --global --add safe.directory /aider
WORKDIR /aider