Skip to content

Commit d53ee24

Browse files
committed
build: Add boto3 to Dockerfile pip install commands
1 parent 6517cb1 commit d53ee24

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ COPY . /tmp/aider
4040

4141
# Install dependencies as root
4242
RUN /venv/bin/python -m pip install --upgrade --no-cache-dir pip && \
43-
/venv/bin/python -m pip install --no-cache-dir /tmp/aider[help,browser,playwright] \
43+
/venv/bin/python -m pip install --no-cache-dir /tmp/aider[help,browser,playwright] boto3 \
4444
--extra-index-url https://download.pytorch.org/whl/cpu && \
4545
rm -rf /tmp/aider
4646

@@ -64,7 +64,7 @@ COPY . /tmp/aider
6464

6565
# Install dependencies as root
6666
RUN /venv/bin/python -m pip install --upgrade --no-cache-dir pip && \
67-
/venv/bin/python -m pip install --no-cache-dir /tmp/aider[playwright] \
67+
/venv/bin/python -m pip install --no-cache-dir /tmp/aider[playwright] boto3 \
6868
--extra-index-url https://download.pytorch.org/whl/cpu && \
6969
rm -rf /tmp/aider
7070

0 commit comments

Comments
 (0)