Skip to content
Snippets Groups Projects

Bugfixes

Merged Florian Deuerlein requested to merge bugfixes into master
Files
3
+ 6
2
@@ -7,7 +7,7 @@ ENV GIT_COMMITTER_NAME=platform@humanbrainproject.eu \
MPLBACKEND=Agg \
SDAHOME=/opt/app-root/lib/sda_flex \
MPICC=/usr/lib64/mpich/bin/mpicc \
XDG_CACHE_HOME=/home/$NB_USER/.cache/
XDG_CACHE_HOME=/tmp/cache/
USER root
@@ -83,14 +83,17 @@ RUN jupyter labextension install --no-build @jupyter-widgets/jupyterlab-manager@
jupyterlab-topbar-extension@0.4.0 \
jupyterlab-system-monitor@0.4.1 \
jupyterlab-plotly@4.14.3 \
jupyter-matplotlib@0.7.2 \
nglview-js-widgets@2.7.1 \
clb-jupyter-ext-copy-shareable-link@1.0.0 \
clb-jupyter-ext-query-params@1.0.1
RUN jupyter labextension install jupyter-matplotlib@0.7.4
RUN jupyter lab build
RUN jupyter notebook --generate-config
RUN mkdir -p /opt/app-root/src/.ipython/profile_default/startup/
RUN mkdir -p /tmp/cache/
# @TODO Remove this when bug is fixed: https://github.com/ipython/ipython/issues/11546
RUN echo 'c.Completer.use_jedi = False' >> /opt/app-root/src/.ipython/profile_default/ipython_config.py
@@ -99,6 +102,7 @@ RUN echo 'c.Completer.use_jedi = False' >> /opt/app-root/src/.ipython/profile_de
RUN echo 'from clb_nb_utils import oauth as clb_oauth' >> /opt/app-root/src/.ipython/profile_default/startup/50-clb-nb-utils.py
RUN fix-permissions /opt/app-root
RUN fix-permissions /tmp/cache
EXPOSE 8080