diff --git a/HISTORY.md b/HISTORY.md index e6b06a873..0ce6249d2 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -9,6 +9,7 @@ - Improved performance of `--lint` on all dirty files in repo. - Improved lint flow, now doing code edit auto-commit before linting. - 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 graph of aider's contribution to each release. - Generic auto-completions are provided for `/commands` without a completion override. diff --git a/docker/Dockerfile b/docker/Dockerfile index a4eddc338..1b3e67692 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -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"]