-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add temporary fix for blank screen with jupyter-collaboration
- Loading branch information
1 parent
3333652
commit d69e808
Showing
1 changed file
with
11 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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' \ | ||
|