mirror of
https://github.com/paul-gauthier/aider.git
synced 2024-04-14 15:45:57 +03: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
|