From 57a37474cf08123f8c92b28dbca13ce2f9a2dafb Mon Sep 17 00:00:00 2001 From: Faraz Fallahi Date: Fri, 13 Jan 2023 19:11:16 -0500 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6f296db..83ee66c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM ubuntu:22.04 ENV DEBIAN_FRONTEND=noninteractive -# Install apt packages and Bazel and Cuda +# Install apt packages and Bazel and CUDA (# https://developer.nvidia.com/cuda-downloads) RUN \ set -eux && \ apt-get update && \ @@ -29,7 +29,7 @@ RUN \ wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86_64/cuda-keyring_1.0-1_all.deb && \ dpkg -i cuda-keyring_1.0-1_all.deb && \ apt-get update && \ - apt-get -yq install cuda && \ # https://developer.nvidia.com/cuda-downloads + apt-get -yq install cuda && \ apt-get -yq autoremove && \ apt-get -yq autoclean && \ apt-get -yq clean && \