mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 09:44:59 +00:00
9 lines
262 B
Docker
9 lines
262 B
Docker
FROM python:3.10-slim
|
|
COPY . /aider
|
|
RUN apt-get update && \
|
|
apt-get install --no-install-recommends -y git libportaudio2 && \
|
|
rm -rf /var/lib/apt/lists/* && \
|
|
pip install --no-cache-dir /aider && \
|
|
rm -rf /aider
|
|
WORKDIR /app
|
|
ENTRYPOINT ["aider"]
|