Files
docker-stacks/tensorflow-notebook/Dockerfile
2017-09-04 21:07:50 -04:00

13 lines
345 B
Docker

# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
FROM jupyter/scipy-notebook
MAINTAINER Jupyter Project <jupyter@googlegroups.com>
# Install Tensorflow
RUN conda install --quiet --yes \
'tensorflow=1.3*' \
'keras=2.0*' && \
conda clean -tipsy && \
fix-permissions $CONDA_DIR