Skip to content

Commit 5ed097a

Browse files
committed
Update base image to python-3.10.11
1 parent 7e70469 commit 5ed097a

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"variable": {
33
"PYTHON_VERSION": {
4-
"default": "3.9.13"
4+
"default": "3.10.11"
55
},
66
"PGSQL_VERSION": {
77
"default": "15"

stack/full-stack/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ COPY --from=base "${CONDA_DIR}/envs/aiida-core-services" "${CONDA_DIR}/envs/aiid
1010
COPY --from=base /usr/local/bin/before-notebook.d /usr/local/bin/before-notebook.d
1111

1212
RUN fix-permissions "${CONDA_DIR}"
13-
RUN fix-permissions "/home/${NB_USER}/.aiida"
13+
RUN fix-permissions "/home/${NB_USER}"
1414

1515
USER ${NB_USER}
1616

stack/lab/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ WORKDIR "/home/${NB_USER}"
7777

7878
RUN 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.
9091
ENV 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" \

0 commit comments

Comments
 (0)