From cfe88993f127726c3a0329e5144e66102308cdfa Mon Sep 17 00:00:00 2001 From: Byungheong Jeong <byungheon.jeong@gmail.com> Date: Mon, 11 May 2020 08:05:55 -0700 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8aa4103..6baad1a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ sudo\ openmpi-bin \ xvfb \ + screen \ wget && \ rm -rf /var/lib/apt/lists/* @@ -28,7 +29,7 @@ RUN wget --quiet --no-check-certificate https://repo.continuum.io/miniconda/Mini # Install Python packages and keras ENV NB_USER keras -ENV NB_UID 1002 +ENV NB_UID 1000 RUN useradd -m -s /bin/bash -N -u $NB_UID $NB_USER && \ chown $NB_USER $CONDA_DIR -R && \ @@ -54,7 +55,6 @@ RUN conda install -y python=${python_version} && \ matplotlib \ mkl \ nose \ - screen \ notebook \ Pillow \ pandas \ -- GitLab