Skip to content

Commit

Permalink
correct install
Browse files Browse the repository at this point in the history
  • Loading branch information
lfoppiano committed Sep 24, 2024
1 parent db41747 commit 2617f1b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile.delft
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,13 @@ FROM tensorflow/tensorflow:2.7.0-gpu
ENV LANG C.UTF-8

# update NVIDIA Cuda key (following a key rotation in April 2022)
RUN apt-get install -y libcublas-12-0 && \
RUN apt-get install -y wget && \
apt-key del 7fa2af80 && \
rm /etc/apt/sources.list.d/cuda.list && \
rm /etc/apt/sources.list.d/nvidia-ml.list && \
wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/cuda-keyring_1.0-1_all.deb && \
dpkg -i cuda-keyring_1.0-1_all.deb
dpkg -i cuda-keyring_1.0-1_all.deb && \
apt-get install libcublas-12-0

# Add Tini
ENV TINI_VERSION v0.19.0
Expand Down

0 comments on commit 2617f1b

Please sign in to comment.