From d53ee24741b21a55490acc2111e4f91a58b64af0 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Tue, 4 Feb 2025 12:52:05 -0800 Subject: [PATCH] build: Add boto3 to Dockerfile pip install commands --- docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index bb19b0ab5..72ea5ce19 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -40,7 +40,7 @@ COPY . /tmp/aider # Install dependencies as root RUN /venv/bin/python -m pip install --upgrade --no-cache-dir pip && \ - /venv/bin/python -m pip install --no-cache-dir /tmp/aider[help,browser,playwright] \ + /venv/bin/python -m pip install --no-cache-dir /tmp/aider[help,browser,playwright] boto3 \ --extra-index-url https://download.pytorch.org/whl/cpu && \ rm -rf /tmp/aider @@ -64,7 +64,7 @@ COPY . /tmp/aider # Install dependencies as root RUN /venv/bin/python -m pip install --upgrade --no-cache-dir pip && \ - /venv/bin/python -m pip install --no-cache-dir /tmp/aider[playwright] \ + /venv/bin/python -m pip install --no-cache-dir /tmp/aider[playwright] boto3 \ --extra-index-url https://download.pytorch.org/whl/cpu && \ rm -rf /tmp/aider