From 9352c22f630c32d20f6d7f1d44be0b92a441ce57 Mon Sep 17 00:00:00 2001 From: Mohammad Firas Sada <mfsada@ucsd.edu> Date: Mon, 11 Nov 2024 11:27:54 -0800 Subject: [PATCH] Update file Dockerfile --- Dockerfile | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/Dockerfile b/Dockerfile index c8603ae..dbd7289 100644 --- a/Dockerfile +++ b/Dockerfile @@ -56,17 +56,6 @@ RUN apt-get update && apt-get install -y \ && \ apt-get clean && rm -rf /var/lib/apt/lists/* -RUN apt-get update && apt-get install -y wget gnupg && \ - wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86_64/cuda-ubuntu2204.pin && \ - mv cuda-ubuntu2204.pin /etc/apt/preferences.d/cuda-repository-pin-600 && \ - wget https://developer.download.nvidia.com/compute/cuda/keys/3bf863cc.pub && \ - apt-key add 3bf863cc.pub && \ - echo "deb https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86_64/ /" > /etc/apt/sources.list.d/cuda.list && \ - apt-get update && \ - apt-get install -y libnvidia-encode1 && \ - apt-get clean && rm -rf /var/lib/apt/lists/* - - # Add the ubuntu user, create directories, and give permissions RUN useradd -m -s /bin/bash ubuntu && \ mkdir -p /home/ubuntu/.local/share/jupyter/runtime && \ -- GitLab