install aider with -e in benchmark docker

This commit is contained in:
Your Name 2024-07-28 17:23:25 -03:00
parent 3c5d08920f
commit e799e89ff4

View file

@ -3,6 +3,6 @@ RUN apt-get update
RUN apt-get install -y less git build-essential
COPY . /aider
RUN pip install --no-cache-dir --upgrade pip
RUN pip install --no-cache-dir /aider[dev]
RUN pip install --no-cache-dir -e /aider[dev]
RUN git config --global --add safe.directory /aider
WORKDIR /aider