mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-10 11:32:57 +00:00
14 lines
376 B
Docker
14 lines
376 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>
|
|
|
|
USER $NB_USER
|
|
|
|
# Install Python 3 Tensorflow
|
|
RUN conda install --quiet --yes 'tensorflow=0.11.0'
|
|
|
|
# Install Python 2 Tensorflow
|
|
RUN conda install --quiet --yes -n python2 'tensorflow=0.11.0'
|