# Copyright (c) Jupyter Development Team. # Distributed under the terms of the Modified BSD License. ARG BASE_CONTAINER=jupyter/minimal-notebook FROM $BASE_CONTAINER LABEL maintainer="Jupyter Project " USER root # ffmpeg for matplotlib anim & dvipng+cm-super for latex labels RUN apt-get update && \ apt-get install -y --no-install-recommends ffmpeg dvipng cm-super && \ apt-get clean && rm -rf /var/lib/apt/lists/* USER $NB_UID # Install Python 3 packages RUN conda install --quiet --yes \ 'beautifulsoup4=4.9.*' \ 'conda-forge::blas=*=openblas' \ 'bokeh=2.3.*' \ 'bottleneck=1.3.*' \ 'cloudpickle=1.6.*' \ 'cython=0.29.*' \ 'dask=2021.4.*' \ 'dill=0.3.*' \ 'h5py=3.2.*' \ 'ipywidgets=7.6.*' \ 'ipympl=0.7.*'\ 'matplotlib-base=3.4.*' \ 'numba=0.53.*' \ 'numexpr=2.7.*' \ 'pandas=1.2.*' \ 'patsy=0.5.*' \ 'protobuf=3.15.*' \ 'pytables=3.6.*' \ 'scikit-image=0.18.*' \ 'scikit-learn=0.24.*' \ 'scipy=1.6.*' \ 'seaborn=0.11.*' \ 'sqlalchemy=1.4.*' \ 'statsmodels=0.12.*' \ 'sympy=1.8.*' \ 'vincent=0.4.*' \ 'widgetsnbextension=3.5.*'\ 'xlrd=2.0.*' && \ conda clean --all -f -y && \ fix-permissions "${CONDA_DIR}" && \ fix-permissions "/home/${NB_USER}" # Install facets which does not have a pip or conda package at the moment WORKDIR /tmp RUN git clone https://github.com/PAIR-code/facets.git && \ jupyter nbextension install facets/facets-dist/ --sys-prefix && \ rm -rf /tmp/facets && \ fix-permissions "${CONDA_DIR}" && \ fix-permissions "/home/${NB_USER}" # Import matplotlib the first time to build the font cache. ENV XDG_CACHE_HOME="/home/${NB_USER}/.cache/" RUN MPLBACKEND=Agg python -c "import matplotlib.pyplot" && \ fix-permissions "/home/${NB_USER}" USER $NB_UID WORKDIR $HOME