From 4f65f5470b7a24e253cc7c6d79006ccc73af645d Mon Sep 17 00:00:00 2001 From: Niko Fink Date: Fri, 17 Sep 2021 11:11:25 +0200 Subject: [PATCH] add hint about broken URLs when jupyterlab is missing see https://github.com/jupyterhub/binder/issues/240 --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 4b3aa93..df093e0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,6 @@ FROM python:3.7-slim +# we are only installing the classic jupyter notebook, not jupyterlab +# so you'll need to change your URLs from /lab to /tree +# https://mybinder.readthedocs.io/en/latest/howto/user_interface.html#jupyterlab RUN pip install --no-cache notebook ENV HOME=/tmp