mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 09:44:59 +00:00
8 lines
317 B
Docker
8 lines
317 B
Docker
FROM python:3.10-slim
|
|
RUN apt-get update
|
|
RUN apt-get install -y less git build-essential
|
|
COPY requirements-dev.txt /aider/requirements-dev.txt
|
|
RUN pip install --no-cache-dir --upgrade pip
|
|
RUN pip install --no-cache-dir -r /aider/requirements-dev.txt
|
|
RUN git config --global --add safe.directory /aider
|
|
WORKDIR /aider
|