diff --git a/scipy-notebook/Dockerfile b/scipy-notebook/Dockerfile index edeb62dc..1e57aee6 100644 --- a/scipy-notebook/Dockerfile +++ b/scipy-notebook/Dockerfile @@ -40,6 +40,7 @@ RUN conda install --quiet --yes \ 'h5py=2.6*' \ 'vincent=0.4.*' \ 'beautifulsoup4=4.5.*' \ + 'protobuf=3.*' \ 'xlrd' && \ conda remove --quiet --yes --force qt pyqt && \ conda clean -tipsy && \ @@ -47,6 +48,10 @@ RUN conda install --quiet --yes \ jupyter nbextension enable --py widgetsnbextension --sys-prefix && \ fix-permissions $CONDA_DIR +RUN git clone https://github.com/PAIR-code/facets.git +WORKDIR facets +RUN jupyter nbextension install facets-dist/ --sys-prefix + # 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" && \