mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 16:25:00 +00:00
10 lines
421 B
Docker
10 lines
421 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 --no-cache-dir --upgrade pip
|
|
RUN pip install --no-cache-dir -r /aider/requirements.txt
|
|
RUN pip install --no-cache-dir -r /aider/dev-requirements.txt
|
|
RUN git config --global --add safe.directory /aider
|
|
WORKDIR /aider
|