From 0a1ab374ca2ffcaf0f760b97067359fc45bbba43 Mon Sep 17 00:00:00 2001 From: Byungheong Jeong <byungheon.jeong@gmail.com> Date: Wed, 3 Jun 2020 23:14:03 -0700 Subject: [PATCH] Update Dockerfile --- Dockerfile | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9e86048..f2daa35 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,8 @@ ARG cuda_version=10.0 ARG cudnn_version=7 -FROM nvidia/cuda:${cuda_version}-cudnn${cudnn_version}-devel +# FROM nvidia/cuda:${cuda_version}-cudnn${cudnn_version}-devel +FROM docker:latest 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 @@ -9,19 +10,19 @@ RUN apt-get update && apt-get install -y apt-transport-https ca-certificates cur # RUN apt-get update && apt-get install -y docker-ce # Install system packages -RUN apt-get update && apt-get install -y --no-install-recommends \ - bzip2 \ - g++ \ - git \ - graphviz \ - libgl1-mesa-glx \ - libhdf5-dev \ - sudo\ - openmpi-bin \ - xvfb \ - screen \ - wget && \ - rm -rf /var/lib/apt/lists/* +# RUN apt-get update && apt-get install -y --no-install-recommends \ +# bzip2 \ +# g++ \ +# git \ +# graphviz \ +# libgl1-mesa-glx \ +# libhdf5-dev \ +# sudo\ +# openmpi-bin \ +# xvfb \ +# screen \ +# wget && \ +# rm -rf /var/lib/apt/lists/* # Install conda ENV CONDA_DIR /opt/conda -- GitLab