Changed RUN to ENTRYPOINT

This commit is contained in:
Paul Gauthier 2023-10-18 08:27:32 -07:00
parent f068e49501
commit f954bc2ecc
2 changed files with 3 additions and 3 deletions

View file

@ -2,6 +2,6 @@ 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"]
ENTRYPOINT ["aider"]