mirror of
https://github.com/Aider-AI/aider
synced 2026-04-25 17:15:07 +02:00
9 lines
200 B
Docker
9 lines
200 B
Docker
FROM python:3.10-slim
|
|
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
|
|
COPY . /aider
|
|
RUN pip install --upgrade pip && pip install /aider
|
|
WORKDIR /app
|
|
ENTRYPOINT ["aider"]
|
|
|
|
|