mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 16:25:00 +00:00
9 lines
337 B
Docker
9 lines
337 B
Docker
FROM python:3.10-slim
|
|
RUN apt-get update
|
|
RUN apt-get install -y less git build-essential
|
|
COPY requirements.txt /aider/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 git config --global --add safe.directory /aider
|
|
WORKDIR /aider
|