Skip to content

Commit

Permalink
install nvidia driver in train image
Browse files Browse the repository at this point in the history
  • Loading branch information
bhearsum committed Jan 20, 2025
1 parent fd98c03 commit ad07919
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions taskcluster/docker/train/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,13 @@ RUN apt-get update -qq \
libicu-dev \
&& apt-get clean


ENV DEBIAN_FRONTEND=noninteractive
RUN curl -sSO https://developer.download.nvidia.com/compute/nvidia-driver/565.57.01/local_installers/nvidia-driver-local-repo-ubuntu2204-565.57.01_1.0-1_amd64.deb \
&& dpkg -i nvidia-driver-local-repo-ubuntu2204-565.57.01_1.0-1_amd64.deb \
&& cp /var/nvidia-driver-local-repo-ubuntu2204-565.57.01/nvidia-driver-*-keyring.gpg /usr/share/keyrings/ \
&& apt-get update -qq \
&& apt-get install -y cuda-drivers-565

VOLUME /builds/worker/checkouts
VOLUME /builds/worker/.cache

0 comments on commit ad07919

Please sign in to comment.