File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,7 +6,28 @@ COPY --chown=${NB_USER}:users examples /home/${NB_USER}/examples
66RUN cd /home/${NB_USER}/src && \
77 python -m pip install --upgrade pip && \
88 python -m pip install . --group docker && \
9- python -m pip check
9+ python -m pip check && \
10+ jupyter labextension disable --level=sys_prefix "@jupyterlab/apputils-extension:announcements" && \
11+ mkdir -p /opt/conda/share/jupyter/lab/settings && \
12+ cat > /opt/conda/share/jupyter/lab/settings/overrides.json <<'EOF'
13+ {
14+ "@jupyterlab/notebook-extension:tracker" : {
15+ "codeCellConfig" : {
16+ "lineNumbers" : true
17+ }
18+ },
19+ "@jupyterlab/fileeditor-extension:plugin" : {
20+ "editorConfig" : {
21+ "lineNumbers" : true
22+ }
23+ },
24+ "@jupyterlab/console-extension:tracker" : {
25+ "promptCellConfig" : {
26+ "lineNumbers" : true
27+ }
28+ }
29+ }
30+ EOF
1031
1132RUN cd /home/${NB_USER}/examples && \
1233 jupytext --to ipynb *.md && \
You can’t perform that action at this time.
0 commit comments