mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-20 12:24:59 +00:00
Added playwright to aider-full image
This commit is contained in:
parent
41772ccef6
commit
d1e385dea1
2 changed files with 3 additions and 1 deletions
|
@ -9,6 +9,7 @@
|
||||||
- Improved performance of `--lint` on all dirty files in repo.
|
- Improved performance of `--lint` on all dirty files in repo.
|
||||||
- Improved lint flow, now doing code edit auto-commit before linting.
|
- Improved lint flow, now doing code edit auto-commit before linting.
|
||||||
- Bugfix to properly handle subprocess encodings (also for `/run`).
|
- Bugfix to properly handle subprocess encodings (also for `/run`).
|
||||||
|
- New aider-full docker image, which includes all extras.
|
||||||
- Added strong model as a fallback for commit messages and chat summaries.
|
- Added strong model as a fallback for commit messages and chat summaries.
|
||||||
- Added graph of aider's contribution to each release.
|
- Added graph of aider's contribution to each release.
|
||||||
- Generic auto-completions are provided for `/commands` without a completion override.
|
- Generic auto-completions are provided for `/commands` without a completion override.
|
||||||
|
|
|
@ -9,8 +9,9 @@ WORKDIR /app
|
||||||
FROM base AS aider-full
|
FROM base AS aider-full
|
||||||
|
|
||||||
COPY . /aider
|
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
|
rm -rf /aider
|
||||||
|
RUN playwright install --with-deps chromium
|
||||||
|
|
||||||
ENTRYPOINT ["aider"]
|
ENTRYPOINT ["aider"]
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue