mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-09 19:12:59 +00:00

The last commit was only for the base-notebook's Dockerfile. For this, all the files in the repo were grepped through and changed.
15 lines
431 B
Docker
15 lines
431 B
Docker
# Copyright (c) Jupyter Development Team.
|
|
# Distributed under the terms of the Modified BSD License.
|
|
ARG BASE_CONTAINER=jupyter/scipy-notebook
|
|
FROM $BASE_CONTAINER
|
|
|
|
LABEL maintainer="Jupyter Project <jupyter@googlegroups.com>"
|
|
|
|
# Install Tensorflow
|
|
RUN conda install --quiet --yes \
|
|
'tensorflow=1.12*' \
|
|
'keras=2.2*' && \
|
|
conda clean --all -y && \
|
|
fix-permissions $CONDA_DIR && \
|
|
fix-permissions /home/$NB_USER
|