From 23bf11f66ba2b487bb7e4cc86a43758725b7ab9c Mon Sep 17 00:00:00 2001 From: lexi2042 <108057758+lexi2042@users.noreply.github.com> Date: Tue, 6 Dec 2022 16:07:39 -0600 Subject: [PATCH] add recipe for installing ijavascript kernel (#1840) * add recipe for installing ijavascript kernel * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Update docs/using/recipes.md * Update docs/using/recipes.md Co-authored-by: Erik Sundell * stop installing ijavascript in $HOME Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Ayaz Salikhov Co-authored-by: Erik Sundell --- docs/using/recipes.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/using/recipes.md b/docs/using/recipes.md index bace5611..8494df88 100644 --- a/docs/using/recipes.md +++ b/docs/using/recipes.md @@ -568,3 +568,16 @@ docker run -it --rm \ -v /tmp/.X11-unix:/tmp/.X11-unix \ jupyter/minimal-notebook ``` + +## Add ijavascript kernel to container + +The example below is a Dockerfile to install the [ijavascript kernel](https://github.com/n-riesco/ijavascript). + +```dockerfile +# use one of the jupyter docker stacks images +FROM jupyter/scipy-notebook:85f615d5cafa + +# install ijavascript +RUN npm install -g ijavascript +RUN ijsinstall +```