mirror of
https://github.com/donnemartin/data-science-ipython-notebooks.git
synced 2024-03-22 13:30:56 +08:00
7 lines
191 B
Docker
7 lines
191 B
Docker
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"]
|