Skip to content

Commit

Permalink
fix(mlc-llm): install CUDA toolkit
Browse files Browse the repository at this point in the history
  • Loading branch information
JJGadgets committed Oct 13, 2024
1 parent c7aa4c5 commit 4cd6289
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/mlc-llm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ case "${CHANNEL}" in \
apt-key del 7fa2af80 || true; \
apt update && apt install --yes --no-install-recommends software-properties-common && apt-add-repository contrib -y && apt purge --yes software-properties-common && \
wget "https://developer.download.nvidia.com/compute/cuda/repos/${ID}${VERSION_ID}/$(uname -m)/cuda-keyring_1.1-1_all.deb" && apt install ./cuda-keyring_1.1-1_all.deb || exit 1; rm -rf ./cuda-keyring_1.1-1_all.deb \
apt update && apt install --yes --no-install-recommends cuda-toolkit \
apt update && apt install --yes --no-install-recommends cuda-toolkit && apt clean \
;; \
*) \
echo "deb http://deb.debian.org/debian ${VERSION_CODENAME}-backports main" >> /etc/apt/sources.list && \
Expand Down

0 comments on commit 4cd6289

Please sign in to comment.