aider/benchmark/Dockerfile
2023-06-29 14:19:00 -07:00

7 lines
231 B
Docker

FROM python:3.8-slim
RUN apt-get update && apt-get install -y less git
COPY requirements.txt /aider/requirements.txt
RUN pip install --upgrade pip && pip install -r /aider/requirements.txt
RUN pip install lox typer
WORKDIR /aider