Skip to content

Commit ae885c0

Browse files
authored
Merge pull request #462 from parente/fix-facets
Fix facets install
2 parents 3b04f14 + 5ff64b4 commit ae885c0

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

scipy-notebook/Dockerfile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,13 @@ RUN conda install --quiet --yes \
4848
jupyter nbextension enable --py widgetsnbextension --sys-prefix && \
4949
fix-permissions $CONDA_DIR
5050

51-
RUN git clone https://github.com/PAIR-code/facets.git
52-
WORKDIR facets
53-
RUN jupyter nbextension install facets-dist/ --sys-prefix
51+
# Install facets which does not have a pip or conda package at the moment
52+
RUN cd /tmp && \
53+
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
5458

5559
# Import matplotlib the first time to build the font cache.
5660
ENV XDG_CACHE_HOME /home/$NB_USER/.cache/

0 commit comments

Comments
 (0)