File tree Expand file tree Collapse file tree 4 files changed +12
-5
lines changed
Expand file tree Collapse file tree 4 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 11# These vulnerabilities were inherited from the base image (pytorch:25.10-py3) and should be removed when the base image
22# is updated.
3+ # WAR against https://github.com/advisories/GHSA-gm62-xv2j-4w53
4+ # WAR against https://github.com/advisories/GHSA-2xpw-w6gg-jr37
5+ urllib3>=2.6.0
Original file line number Diff line number Diff line change @@ -71,6 +71,10 @@ RUN GITHUB_MIRROR=${GITHUB_MIRROR} \
7171 rm install_pytorch.sh && \
7272 rm install.sh
7373
74+ # Copy and install dependencies from constraints.txt
75+ COPY constraints.txt /tmp/constraints.txt
76+ RUN pip3 install --no-cache-dir -r /tmp/constraints.txt && rm /tmp/constraints.txt
77+
7478# Install UCX, NIXL, etcd
7579# TODO: Combine these into the main install.sh script
7680RUN GITHUB_MIRROR=${GITHUB_MIRROR} bash ./install_ucx.sh && \
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ install_python_rockylinux() {
119119}
120120
121121install_pyp_rockylinux () {
122- bash -c " pip3 install 'urllib3<2.0' pytest"
122+ bash -c " pip3 install pytest"
123123}
124124
125125install_gcctoolset_rockylinux () {
Original file line number Diff line number Diff line change 1313# images are adopted from PostMerge pipelines, the abbreviated commit hash is used instead.
1414IMAGE_NAME =urm.nvidia.com/sw-tensorrt-docker/tensorrt-llm
1515
16- LLM_DOCKER_IMAGE =urm.nvidia.com/sw-tensorrt-docker/tensorrt-llm:pytorch-25.10-py3-x86_64-ubuntu24.04-trt10.13.3.9-skip-tritondevel-202512081220-9584
17- LLM_SBSA_DOCKER_IMAGE =urm.nvidia.com/sw-tensorrt-docker/tensorrt-llm:pytorch-25.10-py3-aarch64-ubuntu24.04-trt10.13.3.9-skip-tritondevel-202512081220-9584
18- LLM_ROCKYLINUX8_PY310_DOCKER_IMAGE =urm.nvidia.com/sw-tensorrt-docker/tensorrt-llm:cuda-13.0.2-devel-rocky8-x86_64-rocky8-py310-trt10.13.3.9-skip-tritondevel-202512081220-9584
19- LLM_ROCKYLINUX8_PY312_DOCKER_IMAGE =urm.nvidia.com/sw-tensorrt-docker/tensorrt-llm:cuda-13.0.2-devel-rocky8-x86_64-rocky8-py312-trt10.13.3.9-skip-tritondevel-202512081220-9584
16+ LLM_DOCKER_IMAGE =urm.nvidia.com/sw-tensorrt-docker/tensorrt-llm:pytorch-25.10-py3-x86_64-ubuntu24.04-trt10.13.3.9-skip-tritondevel-202512091705-9823
17+ LLM_SBSA_DOCKER_IMAGE =urm.nvidia.com/sw-tensorrt-docker/tensorrt-llm:pytorch-25.10-py3-aarch64-ubuntu24.04-trt10.13.3.9-skip-tritondevel-202512091705-9823
18+ LLM_ROCKYLINUX8_PY310_DOCKER_IMAGE =urm.nvidia.com/sw-tensorrt-docker/tensorrt-llm:cuda-13.0.2-devel-rocky8-x86_64-rocky8-py310-trt10.13.3.9-skip-tritondevel-202512091705-9823
19+ LLM_ROCKYLINUX8_PY312_DOCKER_IMAGE =urm.nvidia.com/sw-tensorrt-docker/tensorrt-llm:cuda-13.0.2-devel-rocky8-x86_64-rocky8-py312-trt10.13.3.9-skip-tritondevel-202512091705-9823
You can’t perform that action at this time.
0 commit comments