Files
docker-stacks/tensorflow-notebook/Dockerfile
romainx 78c70dce88 Stack update (partial)
Following images updated

- `base-notebook`
- `scipy-notebook`
- `tensorflow-notebook`
- `tensorflow`
- `datascience-notebook`
- `r-notebook`
2020-09-19 07:17:45 +02:00

13 lines
398 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 pip install --quiet --no-cache-dir \
'tensorflow==2.3.0' && \
fix-permissions "${CONDA_DIR}" && \
fix-permissions "/home/${NB_USER}"