added experimental docker image

This commit is contained in:
Paul Gauthier 2023-10-18 08:24:12 -07:00
parent 364a3f70e9
commit f068e49501
2 changed files with 39 additions and 0 deletions

7
docker/Dockerfile Normal file
View file

@ -0,0 +1,7 @@
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
CMD ["aider"]