mirror of
https://github.com/Aider-AI/aider
synced 2026-04-27 18:07:02 +02:00
11 lines
376 B
Docker
11 lines
376 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
|
|
COPY dev-requirements.txt /aider/dev-requirements.txt
|
|
RUN pip install --upgrade pip
|
|
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
|