From b2cd7d6c586df7581eddbc632d55b60f9af27e26 Mon Sep 17 00:00:00 2001 From: Byungheong Jeong <byungheon.jeong@gmail.com> Date: Wed, 3 Jun 2020 21:51:47 -0700 Subject: [PATCH] Update Dockerfile --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index a4bc360..477b9a8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,9 +3,9 @@ ARG cudnn_version=7 FROM nvidia/cuda:${cuda_version}-cudnn${cudnn_version}-devel RUN apt-get update && apt-get install -y apt-transport-https ca-certificates curl software-properties-common -RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg +# RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg -RUN apt-get update && add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic test" +# RUN apt-get update && add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic test" RUN apt-get update && apt-get install -y docker-ce # Install system packages @@ -76,7 +76,6 @@ RUN conda install -y python=${python_version} && \ conda clean -yt # pip install git+git://github.com/keras-team/keras.git && \ - #ADD theanorc /home/keras/.theanorc ENV LC_ALL=C.UTF-8 -- GitLab