From 48faabcda07ce882d8d84f6d991a524690faa98e Mon Sep 17 00:00:00 2001 From: Wei-Ting Kuo Date: Wed, 24 Aug 2016 20:24:48 +0800 Subject: [PATCH] fix Dockerfile for better consistency --- tensorflow-notebook/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tensorflow-notebook/Dockerfile b/tensorflow-notebook/Dockerfile index 14f2bdae..7f321307 100644 --- a/tensorflow-notebook/Dockerfile +++ b/tensorflow-notebook/Dockerfile @@ -7,7 +7,7 @@ MAINTAINER Jupyter Project USER $NB_USER # Install Python 3 Tensorflow -RUN conda install --quiet --yes -c conda-forge 'tensorflow=0.9.0' +RUN conda install --quiet --yes 'tensorflow=0.9.0' # Install Python 2 Tensorflow -RUN conda install --quiet --yes -p $CONDA_DIR/envs/python2 python=2.7 'tensorflow=0.9.0' +RUN conda install --quiet --yes -n python2 'tensorflow=0.9.0'