aider/benchmark/Dockerfile
2023-09-09 12:07:11 +12:00

8 lines
320 B
Docker

FROM python:3.10-slim
RUN apt-get update && apt-get install -y less git
COPY requirements.txt /aider/requirements.txt
RUN pip install lox typer pandas matplotlib imgcat aider-chat
RUN pip install --upgrade pip && pip install -r /aider/requirements.txt
RUN git config --global --add safe.directory /aider
WORKDIR /aider