File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -474,6 +474,12 @@ ENV CUDA_HOME=/usr/local/cuda
474474RUN export TORCH_CUDA_ARCH_LIST="${TORCH_CUDA_ARCH_LIST:-9.0a+PTX}" \
475475 && bash install_python_libraries.sh
476476
477+ # CUDA image changed from /usr/local/nvidia to /usr/local/cuda in 12.8 but will
478+ # return to /usr/local/nvidia in 13.0 to allow container providers to mount drivers
479+ # consistently from the host (see https://github.com/vllm-project/vllm/issues/18859).
480+ # Until then, add /usr/local/nvidia/lib64 before the image cuda path to allow override.
481+ ENV LD_LIBRARY_PATH=/usr/local/nvidia/lib64:${LD_LIBRARY_PATH}
482+
477483# ################### vLLM installation IMAGE ####################
478484
479485# ################### TEST IMAGE ####################
You can’t perform that action at this time.
0 commit comments