File tree Expand file tree Collapse file tree 2 files changed +14
-13
lines changed
deep-learning-tools/.jupyter Expand file tree Collapse file tree 2 files changed +14
-13
lines changed Original file line number Diff line number Diff line change 7
7
# ------------------------------------------------------------------------------
8
8
9
9
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
20
21
# Run all nodes interactively
21
22
c .InteractiveShell .ast_node_interactivity = "all"
Original file line number Diff line number Diff line change 6
6
# SciPy: https://github.com/jupyter/docker-stacks/blob/main/scipy-notebook/Dockerfile
7
7
# Minimal: https://github.com/jupyter/docker-stacks/blob/main/minimal-notebook/Dockerfile
8
8
# 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
10
10
USER root
11
11
ENV DEBIAN_FRONTEND noninteractive \
12
12
NODE_OPTIONS --max-old-space-size=4096 \
@@ -28,7 +28,7 @@ RUN conda config --set channel_priority strict && \
28
28
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'
29
29
USER notebook
30
30
31
- FROM quay.io/jupyter/all-spark-notebook:a6ef176ff3a7
31
+ FROM quay.io/jupyter/all-spark-notebook:52f7f3b5d565
32
32
LABEL maintainer =
"[email protected] "
33
33
USER root
34
34
@@ -167,7 +167,7 @@ ENV TZ="Europe/Oslo" \
167
167
PKG_HADOOP_VERSION=${HADOOP_VERSION} \
168
168
PKG_TOREE_VERSION=0.5.0-incubating \
169
169
PKG_R_VERSION=4.4.2 \
170
- PKG_VS_CODE_VERSION=4.96.2 \
170
+ PKG_VS_CODE_VERSION=4.96.4 \
171
171
HOME=/home/notebook \
172
172
PATH=$PATH:$SPARK_HOME/bin \
173
173
XDG_CACHE_HOME=/home/notebook/.cache/
You can’t perform that action at this time.
0 commit comments