From 1e309030e309bec523513a01a68e2128963cfb4e Mon Sep 17 00:00:00 2001 From: ishandhanani <82981111+ishandhanani@users.noreply.github.com> Date: Tue, 20 Jan 2026 16:47:20 -0600 Subject: [PATCH] update urllib3 and gpgv Dockerfile (#17439) --- docker/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docker/Dockerfile b/docker/Dockerfile index 1b04b1cb9..f700bc35f 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -424,6 +424,8 @@ RUN if [ "${CUDA_VERSION%%.*}" = "13" ] && [ -d /usr/local/lib/python3.12/dist-p ln -s /usr/local/cuda/bin/ptxas /usr/local/lib/python3.12/dist-packages/triton/backends/nvidia/bin/ptxas; \ fi +RUN python3 -m pip install --upgrade "urllib3>=2.6.3" + # Set workspace directory WORKDIR /sgl-workspace/sglang @@ -505,6 +507,8 @@ RUN --mount=type=cache,target=/var/cache/apt,id=runtime-apt \ # NCCL packages needed for pynccl_allocator JIT compilation (-lnccl) libnccl2 \ libnccl-dev \ + # GPG key verification + gnupg2 \ && update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.12 2 \ && update-alternatives --set python3 /usr/bin/python3.12 \ && ln -sf /usr/bin/python3.12 /usr/bin/python \