dask / dask-tutorial

Dask tutorial
https://tutorial.dask.org
BSD 3-Clause "New" or "Revised" License
1.83k stars 702 forks source link

Use Jupyter Lab when running from Dockerfile #224

Closed mplough-kobold closed 2 years ago

mplough-kobold commented 2 years ago

When running from Dockerfile (option 2c in the README), the Docker image build process installs Jupyter Lab, but the running container uses a regular Jupyter notebook unless the user specifically navigates to localhost:8888/lab. The Jupyter notebook environment ignores source_hidden metadata so all the answers are visible, taking all the fun out of the exercises.

This PR modifies the Dockerfile to run Jupyter Lab instead. As a result, the startup link redirects to localhost:8888/lab, where hidden cells are hidden correctly by default.

jsignell commented 2 years ago

Thanks @mplough-kobold!