Skip to content

Commit 31e6f4a

Browse files
committed
fix: Remove urllib workaround
1 parent ca48f76 commit 31e6f4a

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Dockerfile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,10 @@ COPY --from=default-jdk /usr/lib/jvm /usr/lib/jvm
8282

8383
COPY autoforward.py /usr/local/bin/autoforward
8484

85-
# Force downgrade of urllib3 to work around https://github.com/docker/docker-py/issues/3113
86-
# Install urllib3 early since it is also used by awscli
85+
# Install the following tools
86+
# - awscli: AWS CLI
87+
# - autoforward dependencies: tool to forward request to a remote Docker deamon
88+
# - datadog-ci: Datadog CI tool
8789
RUN <<-EOT
8890
set -eux
8991
sudo apt-get update
@@ -94,7 +96,7 @@ RUN <<-EOT
9496
sudo apt install python3-pip
9597
sudo apt-get -y clean
9698
sudo rm -rf /var/lib/apt/lists/*
97-
pip3 install "urllib3>=1.25.4,<2" awscli
99+
pip3 install awscli
98100
pip3 install requests requests-unixsocket
99101
pip3 cache purge
100102
sudo chmod +x /usr/local/bin/autoforward

0 commit comments

Comments
 (0)