Skip to content

Commit 7de094b

Browse files
committed
update jupyter-spark latest all-spark-notebook and update vscode server
1 parent cbd0679 commit 7de094b

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
lines changed

deep-learning-tools/.jupyter/notebook_config.py

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,16 @@
77
# ------------------------------------------------------------------------------
88

99
c.IPKernelApp.pylab = 'inline'
10-
c.NotebookApp.ip = '*'
11-
c.NotebookApp.open_browser = False
12-
c.NotebookApp.quit_button = False
13-
c.NotebookApp.port = 8888
14-
c.NotebookApp.base_url = '/'
15-
c.NotebookApp.trust_xheaders = True
16-
c.NotebookApp.tornado_settings = {'static_url_prefix': '/static/'}
17-
c.NotebookApp.notebook_dir = '/home/notebook'
18-
c.NotebookApp.allow_origin = '*'
19-
c.NotebookApp.allow_remote_access = True
10+
c.ServerApp.ip = '*'
11+
c.ServerApp.open_browser = False
12+
c.ServerApp.quit_button = False
13+
c.ServerApp.port = 8888
14+
c.ServerApp.base_url = '/'
15+
c.ServerApp.trust_xheaders = True
16+
c.ServerApp.tornado_settings = {'static_url_prefix': '/static/'}
17+
c.ServerApp.root_dir = '/home/notebook'
18+
c.ServerApp.allow_origin = '*'
19+
c.ServerApp.log_level = 'DEBUG'
20+
c.ServerApp.allow_remote_access = True
2021
# Run all nodes interactively
2122
c.InteractiveShell.ast_node_interactivity = "all"

jupyter-spark/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# SciPy: https://github.com/jupyter/docker-stacks/blob/main/scipy-notebook/Dockerfile
77
# Minimal: https://github.com/jupyter/docker-stacks/blob/main/minimal-notebook/Dockerfile
88
# Base: https://github.com/jupyter/docker-stacks/blob/main/base-notebook/Dockerfile
9-
FROM quay.io/jupyter/all-spark-notebook:a6ef176ff3a7 as miniconda
9+
FROM quay.io/jupyter/all-spark-notebook:52f7f3b5d565 as miniconda
1010
USER root
1111
ENV DEBIAN_FRONTEND noninteractive \
1212
NODE_OPTIONS --max-old-space-size=4096 \
@@ -28,7 +28,7 @@ RUN conda config --set channel_priority strict && \
2828
RUN mamba create -n minimal -y && bash -c 'source activate minimal && conda install -y ipykernel && ipython kernel install --name=minimal --display-name="Python 3 (minimal conda)" && conda clean --all -f -y && conda deactivate'
2929
USER notebook
3030

31-
FROM quay.io/jupyter/all-spark-notebook:a6ef176ff3a7
31+
FROM quay.io/jupyter/all-spark-notebook:52f7f3b5d565
3232
LABEL maintainer = "[email protected]"
3333
USER root
3434

@@ -167,7 +167,7 @@ ENV TZ="Europe/Oslo" \
167167
PKG_HADOOP_VERSION=${HADOOP_VERSION} \
168168
PKG_TOREE_VERSION=0.5.0-incubating \
169169
PKG_R_VERSION=4.4.2 \
170-
PKG_VS_CODE_VERSION=4.96.2 \
170+
PKG_VS_CODE_VERSION=4.96.4 \
171171
HOME=/home/notebook \
172172
PATH=$PATH:$SPARK_HOME/bin \
173173
XDG_CACHE_HOME=/home/notebook/.cache/

0 commit comments

Comments
 (0)