From ef2a5bdae7e614c06d8d89e07ed75a6445867c06 Mon Sep 17 00:00:00 2001 From: pica4500 Date: Wed, 23 Aug 2023 01:10:34 +0900 Subject: [PATCH] Fix dockerfile to solve CUDA Linux Repository Key Rotation issue --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 0103070..7317c57 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,8 @@ FROM pytorch/pytorch:1.5-cuda10.1-cudnn7-devel ENV LC_ALL=C.UTF-8 \ LANG=C.UTF-8 +RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/3bf863cc.pub + RUN mkdir -p /usr/share/man/man1 && \ apt-get update && apt-get install -y \ build-essential \