mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 08:14:59 +00:00
10 lines
376 B
Docker
10 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
|