From 92dd0a7556f6826761e16ac63ff8491d8623d901 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Geron?= Date: Tue, 27 Sep 2016 11:11:39 +0200 Subject: [PATCH] Add Dockerfile to have TensorFlow on both python 2 and python 3 (crossing my fingers) --- Dockerfile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..8971c7e --- /dev/null +++ b/Dockerfile @@ -0,0 +1,16 @@ +FROM andrewosh/binder-base + +USER root +RUN apt-get update + +USER main + +# Python 2 +RUN conda install jupyter matplotlib numexpr numpy pandas Pillow protobuf psutil scikit-learn scipy sympy wheel +RUN conda install -c jjhelmus tensorflow=0.10.0 +RUN conda install https://github.com/ipython-contrib/IPython-notebook-extensions/archive/master.zip + +# Python 3 +RUN conda install -n python3 jupyter matplotlib numexpr numpy pandas Pillow protobuf psutil scikit-learn scipy sympy wheel +RUN conda install -n python3 -c jjhelmus tensorflow=0.10.0 +RUN conda install -n python 3 https://github.com/ipython-contrib/IPython-notebook-extensions/archive/master.zip