mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-08 10:34:06 +00:00
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 <erik.i.sundell@gmail.com> * 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 <mathbunnyru@users.noreply.github.com> Co-authored-by: Erik Sundell <erik.i.sundell@gmail.com>
This commit is contained in:
@@ -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
|
||||
```
|
||||
|
Reference in New Issue
Block a user