From 659b5fe6744e6a9325d20a3a0ace302c4e696c89 Mon Sep 17 00:00:00 2001 From: Polarnova <34890861+Polarnova@users.noreply.github.com> Date: Wed, 29 Nov 2023 19:22:38 +0800 Subject: [PATCH] Update code comment Dockerfile small change --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index df2c2a5..eab632a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,10 +22,11 @@ RUN /bin/bash -c "source activate $CONDA_ENV_NAME && \ # Switch back to non-root user USER $NB_UID -# Set the default command to start Jupyter Notebook +#Install the Kernel Spec RUN /bin/bash -c "source activate $CONDA_ENV_NAME && \ jupyter kernelspec install /opt/conda/envs/cling/share/jupyter/kernels/xcpp11 --sys-prefix && \ jupyter kernelspec install /opt/conda/envs/cling/share/jupyter/kernels/xcpp14 --sys-prefix && \ jupyter kernelspec install /opt/conda/envs/cling/share/jupyter/kernels/xcpp17 --sys-prefix" +# Set the default command to start Jupyter Notebook CMD ["jupyter", "notebook", "--ip=0.0.0.0", "--port=8888", "--no-browser", "--allow-root"]