Commit 9fb5cfac authored by Peter Parente's avatar Peter Parente Committed by GitHub

Merge branch 'master' into conda_outdated

parents 416dc99d 460984e8
...@@ -60,7 +60,7 @@ RUN echo "auth requisite pam_deny.so" >> /etc/pam.d/su && \ ...@@ -60,7 +60,7 @@ RUN echo "auth requisite pam_deny.so" >> /etc/pam.d/su && \
chown $NB_USER:$NB_GID $CONDA_DIR && \ chown $NB_USER:$NB_GID $CONDA_DIR && \
chmod g+w /etc/passwd && \ chmod g+w /etc/passwd && \
fix-permissions $HOME && \ fix-permissions $HOME && \
fix-permissions "$(dirname $CONDA_DIR)" fix-permissions $CONDA_DIR
USER $NB_UID USER $NB_UID
WORKDIR $HOME WORKDIR $HOME
......
This diff is collapsed.
This diff is collapsed.
...@@ -26,6 +26,7 @@ RUN conda install --quiet --yes \ ...@@ -26,6 +26,7 @@ RUN conda install --quiet --yes \
'h5py=2.10.*' \ 'h5py=2.10.*' \
'hdf5=1.10.*' \ 'hdf5=1.10.*' \
'ipywidgets=7.5.*' \ 'ipywidgets=7.5.*' \
'ipympl=0.5.*'\
'matplotlib-base=3.1.*' \ 'matplotlib-base=3.1.*' \
'numba=0.48.*' \ 'numba=0.48.*' \
'numexpr=2.7.*' \ 'numexpr=2.7.*' \
...@@ -40,6 +41,7 @@ RUN conda install --quiet --yes \ ...@@ -40,6 +41,7 @@ RUN conda install --quiet --yes \
'statsmodels=0.11.*' \ 'statsmodels=0.11.*' \
'sympy=1.5.*' \ 'sympy=1.5.*' \
'vincent=0.4.*' \ 'vincent=0.4.*' \
'widgetsnbextension=3.5.*'\
'xlrd' \ 'xlrd' \
&& \ && \
conda clean --all -f -y && \ conda clean --all -f -y && \
...@@ -48,8 +50,9 @@ RUN conda install --quiet --yes \ ...@@ -48,8 +50,9 @@ RUN conda install --quiet --yes \
# Also activate ipywidgets extension for JupyterLab # Also activate ipywidgets extension for JupyterLab
# Check this URL for most recent compatibilities # Check this URL for most recent compatibilities
# https://github.com/jupyter-widgets/ipywidgets/tree/master/packages/jupyterlab-manager # https://github.com/jupyter-widgets/ipywidgets/tree/master/packages/jupyterlab-manager
jupyter labextension install @jupyter-widgets/jupyterlab-manager@^1.0.1 --no-build && \ jupyter labextension install @jupyter-widgets/jupyterlab-manager@^1.1.0 --no-build && \
jupyter labextension install jupyterlab_bokeh@1.0.0 --no-build && \ jupyter labextension install jupyterlab_bokeh@1.0.0 --no-build && \
jupyter labextension install jupyter-matplotlib --no-build && \
jupyter lab build && \ jupyter lab build && \
npm cache clean --force && \ npm cache clean --force && \
rm -rf $CONDA_DIR/share/jupyter/lab/staging && \ rm -rf $CONDA_DIR/share/jupyter/lab/staging && \
......
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