Last active
August 10, 2019 14:06
-
-
Save prs-watch/aa1b1a86213cbfbf80323e9de8c7b4db to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # meta information | |
| FROM jupyter/minimal-notebook | |
| LABEL maintainer="prs-watch" | |
| # setting command | |
| RUN pip install -U jupyterlab==0.35.6 | |
| RUN jupyter labextension install jupyterlab_voyager | |
| RUN jupyter labextension install @jupyterlab/plotly-extension | |
| # at directory where this Dockerfile exists.. | |
| # $ docker build -t jupyterlab_with_voyager ./ | |
| # $ docker run --rm --name notebook -p 8888:8888 jupyterlab_with_voyager start.sh jupyter lab | |
| # enjoy! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment