Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions dockerfile/Dockerfile.triton.trt_llm_backend
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,10 @@ ARG TENSORRTLLM_VER
RUN --mount=type=secret,id=pypi_extra_values,env=PYPI_EXTRA_VALUES \
if [ -n "${PYPI_EXTRA_VALUES}" ]; then \
pip3 install --no-cache-dir ${PYPI_EXTRA_VALUES} ; \
pip3 uninstall -y opencv-python-headless || true; \
else \
pip3 install --no-cache-dir --extra-index-url https://pypi.nvidia.com tensorrt_llm==${TENSORRTLLM_VER} ; \
pip3 uninstall -y opencv-python-headless || true; \
fi

RUN find /usr /opt -name libtensorrt_llm.so -exec dirname {} \; | sort -u > /etc/ld.so.conf.d/tensorrt-llm.conf \
Expand Down
Loading