Skip to content

Commit

Permalink
Add temporary fix for blank screen with jupyter-collaboration
Browse files Browse the repository at this point in the history
  • Loading branch information
flaviomartins committed Dec 5, 2024
1 parent 3333652 commit d69e808
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion notebook/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
FROM quay.io/jupyter/minimal-notebook:2024-12-03

LABEL maintainer="Flavio Martins <[email protected]>"
ARG NB_BUILD=2
ARG NB_BUILD=3

# Fix: https://github.com/hadolint/hadolint/wiki/DL4006
# Fix: https://github.com/koalaman/shellcheck/wiki/SC3014
Expand All @@ -22,6 +22,16 @@ RUN apt-get update --yes && \

USER ${NB_UID}

# Temporary fix for blank screen bug with jupyter-collaboration
# to remove when updating to the next minimal-notebook version
RUN mamba update --yes \
'conda-libmamba-solver' \
'jupyterlab' \
'notebook' && \
mamba clean --all -f -y && \
fix-permissions "${CONDA_DIR}" && \
fix-permissions "/home/${NB_USER}"

# Install Python 3 packages
RUN mamba install --yes \
'conda-forge::blas=*=openblas' \
Expand Down

0 comments on commit d69e808

Please sign in to comment.