From 32265d19f1d968397dd0368602f16aaf1456fb74 Mon Sep 17 00:00:00 2001 From: Jakub Novak Date: Wed, 3 Apr 2024 09:52:28 -0700 Subject: [PATCH] Remove extra part in JS readme --- js/README.md | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/js/README.md b/js/README.md index a3d161e..cf1d5d5 100644 --- a/js/README.md +++ b/js/README.md @@ -121,27 +121,3 @@ urllib3==1.26.7 xarray==2024.2.0 xlrd==2.0.1 ``` - -### Custom template using Code Interpreter - -The template requires custom setup. If you want to build your own custom template and use Code Interpreter, you need to do: - -1. Copy `jupyter_server_config.py` and `start-up.sh` from this PR -2. Add following commands in your Dockerfile - -```Dockerfile -# Installs jupyter server and kernel -RUN pip install jupyter-server ipykernel ipython -RUN ipython kernel install --name "python3" --user -# Copes jupyter server config -COPY ./jupyter_server_config.py /home/user/.jupyter/ -# Setups jupyter server -COPY ./start-up.sh /home/user/.jupyter/ -RUN chmod +x /home/user/.jupyter/start-up.sh -``` - -3. Add the following option `-c "/home/user/.jupyter/start-up.sh"` to `e2b template build` command or add this line to your `e2b.toml`. - -```yaml -start_cmd = "/home/user/.jupyter/start-up.sh" -```