mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-10 11:32:57 +00:00
14 lines
394 B
Docker
14 lines
394 B
Docker
# Copyright (c) Jupyter Development Team.
|
|
# Distributed under the terms of the Modified BSD License.
|
|
FROM jupyter/scipy-notebook
|
|
|
|
LABEL maintainer="Jupyter Project <jupyter@googlegroups.com>"
|
|
|
|
# Install Tensorflow
|
|
RUN conda install --quiet --yes \
|
|
'tensorflow=1.11*' \
|
|
'keras=2.2*' && \
|
|
conda clean -tipsy && \
|
|
fix-permissions $CONDA_DIR && \
|
|
fix-permissions /home/$NB_USER
|