Added playwright to aider-full image

This commit is contained in:
Paul Gauthier 2024-07-30 20:43:29 -03:00
parent 41772ccef6
commit d1e385dea1
2 changed files with 3 additions and 1 deletions

View file

@ -9,8 +9,9 @@ WORKDIR /app
FROM base AS aider-full
COPY . /aider
RUN pip install --no-cache-dir /aider[help,browser] --extra-index-url https://download.pytorch.org/whl/cpu && \
RUN pip install --no-cache-dir /aider[help,browser,playwright] --extra-index-url https://download.pytorch.org/whl/cpu && \
rm -rf /aider
RUN playwright install --with-deps chromium
ENTRYPOINT ["aider"]