mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-10 11:32:57 +00:00

The following changes have been made. - `base-notebook` - `Changed`: Bump Ubuntu - `Changed`: Bump conda - `Fixed`: Add missing `apt-get clean` - `minimal-notebook` - `Removed`: `jed` editor see #1174 (partial) - `Deprecated`: `emacs` editor (in the documentation and in the image) see #1174 (partial) - `scipy-notebook` - `Fixed`: Add missing `apt-get clean` - `Changed`: Bump `dask` - `Changed`: Bump `protobuf` - `r-notebook` - `Changed`: Bump `r-base` - `Changed`: Bump `r-rmarkdown` - `Removed`: The description of `tidyverse` packages because it's not the place to do that and it will always be obsolete. - `datascience-notebook` - `Changed`: Bump `r-base` to `4.0.x` see #1102 (partial) - `Removed`: `plyr` package because it's retired fixes #1103 - `Removed`: `r-reshape2` package because it's retired fixes #1103 - `Changed`: Bump `r-rmarkdown` - `Changed`: Bump Julia - `tensorflow-notebook` - `Changed`: Bump `tensorflow` - `pyspark-notebook` - `Fixed`: Add missing `apt-get clean` - `Changed`: Bump `pyarrow` - `all-spark-notebook` - `Fixed`: Add missing `apt-get clean` - `Changed`: Bump `r-base` to `4.0.x` see #1102 (partial) - `Changed`: Bump `r-sparklyr`
13 lines
398 B
Docker
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.1' && \
|
|
fix-permissions "${CONDA_DIR}" && \
|
|
fix-permissions "/home/${NB_USER}"
|