Add tensor-flow-exercises README and docker install.

This commit is contained in:
Donne Martin 2015-12-27 07:20:46 -05:00
parent 4e5ae7c177
commit 21c2fbabdc
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,6 @@
FROM b.gcr.io/tensorflow/tensorflow:latest
MAINTAINER Vincent Vanhoucke <vanhoucke@google.com>
RUN pip install scikit-learn
ADD *.ipynb /notebooks/
WORKDIR /notebooks
CMD ["/run_jupyter.sh"]

View File

@ -0,0 +1,12 @@
Exercises
===========================================================
Building the Docker container
-----------------------------
docker build -t $USER/exercises .
Running the container
---------------------
docker run -p 8888:8888 -it --rm $USER/exercises