mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 00:35:00 +00:00
7 lines
190 B
Docker
7 lines
190 B
Docker
FROM python:3.10-slim
|
|
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
|
|
RUN pip install --upgrade pip && pip install aider-chat
|
|
WORKDIR /app
|
|
ENTRYPOINT ["aider"]
|
|
|
|
|