mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-19 20:05:00 +00:00
8 lines
200 B
Docker
8 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"]
|
|
|
|
|