Commit 8312f544 authored by Peter Parente's avatar Peter Parente Committed by GitHub

Merge pull request #618 from parente/fix-npm-cache-clean

Force npm cache clean
parents a76af058 d289c08d
...@@ -83,7 +83,7 @@ RUN conda install --quiet --yes \ ...@@ -83,7 +83,7 @@ RUN conda install --quiet --yes \
'jupyterlab=0.31.*' && \ 'jupyterlab=0.31.*' && \
conda clean -tipsy && \ conda clean -tipsy && \
jupyter labextension install @jupyterlab/hub-extension@^0.8.0 && \ jupyter labextension install @jupyterlab/hub-extension@^0.8.0 && \
npm cache clean && \ npm cache clean --force && \
rm -rf $CONDA_DIR/share/jupyter/lab/staging && \ rm -rf $CONDA_DIR/share/jupyter/lab/staging && \
rm -rf /home/$NB_USER/.cache/yarn && \ rm -rf /home/$NB_USER/.cache/yarn && \
fix-permissions $CONDA_DIR && \ fix-permissions $CONDA_DIR && \
......
...@@ -49,7 +49,7 @@ RUN conda install --quiet --yes \ ...@@ -49,7 +49,7 @@ RUN conda install --quiet --yes \
# Also activate ipywidgets extension for JupyterLab # Also activate ipywidgets extension for JupyterLab
jupyter labextension install @jupyter-widgets/jupyterlab-manager@^0.33.1 && \ jupyter labextension install @jupyter-widgets/jupyterlab-manager@^0.33.1 && \
jupyter labextension install jupyterlab_bokeh@^0.4.0 && \ jupyter labextension install jupyterlab_bokeh@^0.4.0 && \
npm cache clean && \ npm cache clean --force && \
rm -rf $CONDA_DIR/share/jupyter/lab/staging && \ rm -rf $CONDA_DIR/share/jupyter/lab/staging && \
rm -rf /home/$NB_USER/.cache/yarn && \ rm -rf /home/$NB_USER/.cache/yarn && \
rm -rf /home/$NB_USER/.node-gyp && \ rm -rf /home/$NB_USER/.node-gyp && \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment