Skip to content
Closed
Show file tree
Hide file tree
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: 1 addition & 1 deletion docker/Dockerfile.multi
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ RUN --mount=type=bind,source=docker/common,target=/opt/docker/common \
NCCL_VER=${NCCL_VER} CUBLAS_VER=${CUBLAS_VER} \
TORCH_INSTALL_TYPE=${TORCH_INSTALL_TYPE} \
bash /opt/docker/common/install.sh --base --cmake --ccache --cuda_toolkit \
--tensorrt --polygraphy --mpi4py --pytorch
--polygraphy --mpi4py --pytorch

# Install constraints after install.sh so cleanup() doesn't delete the file mid-RUN
COPY constraints.txt /tmp/constraints.txt
Expand Down
2 changes: 1 addition & 1 deletion docker/common/install_base.sh
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ init_ubuntu() {
pip3 install --ignore-installed "setuptools<80"

echo 'export LD_LIBRARY_PATH=/usr/local/cuda/lib64:$LD_LIBRARY_PATH' >> "${ENV}"
# Remove previous TRT installation
# Remove TRT installation
if [[ $(apt list --installed | grep libnvinfer) ]]; then
apt-get remove --purge -y libnvinfer*
fi
Expand Down
Loading