File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 11{
22 "variable" : {
33 "PYTHON_VERSION" : {
4- "default" : " 3.9.13 "
4+ "default" : " 3.10.11 "
55 },
66 "PGSQL_VERSION" : {
77 "default" : " 15"
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ COPY --from=base "${CONDA_DIR}/envs/aiida-core-services" "${CONDA_DIR}/envs/aiid
1010COPY --from=base /usr/local/bin/before-notebook.d /usr/local/bin/before-notebook.d
1111
1212RUN fix-permissions "${CONDA_DIR}"
13- RUN fix-permissions "/home/${NB_USER}/.aiida "
13+ RUN fix-permissions "/home/${NB_USER}"
1414
1515USER ${NB_USER}
1616
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ WORKDIR "/home/${NB_USER}"
7777
7878RUN mkdir -p /home/${NB_USER}/apps
7979
80- # When a Jupyter notebook server looses a connection to the frontend,
80+ # NOTE1: When a Jupyter notebook server looses a connection to the frontend,
8181# it keeps the messages in a buffer. If there is a background thread running
8282# and trying to update the frontend, the buffer grows indefinitely,
8383# eventually consuming all available RAM.
@@ -87,8 +87,10 @@ RUN mkdir -p /home/${NB_USER}/apps
8787# but that may come with other problems for people with flaky internet connections.
8888# Instead, here we configure Jupyter to kill all kernels that have been alive for
8989# more than 12 hours. We also close all inactive terminals after 10 minutes.
90+ # NOTE2: show_banner=False disables the banner for upgrading to Notebook 7.
9091ENV NOTEBOOK_ARGS \
9192 "--NotebookApp.default_url='/apps/apps/home/start.ipynb'" \
93+ "--NotebookApp.show_banner=False" \
9294 "--ContentsManager.allow_hidden=True" \
9395 "--MappingKernelManager.buffer_offline_messages=True" \
9496 "--MappingKernelManager.cull_busy=True" \
You can’t perform that action at this time.
0 commit comments