We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3b04f14 + 5ff64b4 commit ae885c0Copy full SHA for ae885c0
scipy-notebook/Dockerfile
@@ -48,9 +48,13 @@ RUN conda install --quiet --yes \
48
jupyter nbextension enable --py widgetsnbextension --sys-prefix && \
49
fix-permissions $CONDA_DIR
50
51
-RUN git clone https://github.com/PAIR-code/facets.git
52
-WORKDIR facets
53
-RUN jupyter nbextension install facets-dist/ --sys-prefix
+# Install facets which does not have a pip or conda package at the moment
+RUN cd /tmp && \
+ git clone https://github.com/PAIR-code/facets.git && \
54
+ cd facets && \
55
+ jupyter nbextension install facets-dist/ --sys-prefix && \
56
+ rm -rf facets && \
57
+ fix-permissions $CONDA_DIR
58
59
# Import matplotlib the first time to build the font cache.
60
ENV XDG_CACHE_HOME /home/$NB_USER/.cache/
0 commit comments