jupyterhub-deploy-docker/examples/jupyterlab/Dockerfile
Justin Tyberg 6d6411d8f7 Add JupyterLab example
(c) Copyright IBM Corp. 2016
2016-12-10 22:07:58 -05:00

11 lines
286 B
Docker

# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
FROM jupyter/scipy-notebook:18e5563b7486
# Install jupyterlab
RUN conda install -c conda-forge jupyterlab
RUN jupyter serverextension enable --py jupyterlab --sys-prefix
USER jovyan