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 1
1
{
2
2
"variable" : {
3
3
"PYTHON_VERSION" : {
4
- "default" : " 3.9.13 "
4
+ "default" : " 3.10.11 "
5
5
},
6
6
"PGSQL_VERSION" : {
7
7
"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
10
10
COPY --from=base /usr/local/bin/before-notebook.d /usr/local/bin/before-notebook.d
11
11
12
12
RUN fix-permissions "${CONDA_DIR}"
13
- RUN fix-permissions "/home/${NB_USER}/.aiida "
13
+ RUN fix-permissions "/home/${NB_USER}"
14
14
15
15
USER ${NB_USER}
16
16
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ WORKDIR "/home/${NB_USER}"
77
77
78
78
RUN mkdir -p /home/${NB_USER}/apps
79
79
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,
81
81
# it keeps the messages in a buffer. If there is a background thread running
82
82
# and trying to update the frontend, the buffer grows indefinitely,
83
83
# eventually consuming all available RAM.
@@ -87,8 +87,10 @@ RUN mkdir -p /home/${NB_USER}/apps
87
87
# but that may come with other problems for people with flaky internet connections.
88
88
# Instead, here we configure Jupyter to kill all kernels that have been alive for
89
89
# 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.
90
91
ENV NOTEBOOK_ARGS \
91
92
"--NotebookApp.default_url='/apps/apps/home/start.ipynb'" \
93
+ "--NotebookApp.show_banner=False" \
92
94
"--ContentsManager.allow_hidden=True" \
93
95
"--MappingKernelManager.buffer_offline_messages=True" \
94
96
"--MappingKernelManager.cull_busy=True" \
You can’t perform that action at this time.
0 commit comments