RUN apt-get install -y --no-install-recommends python3 python3-pip python3-venv RUN python3 -m venv /opt/venv ENV PATH=/opt/venv/bin:$PATH RUN --timeout=5m pip install --no-cache-dir notebook START jupyter notebook --no-browser --ip=0.0.0.0 --port=8888 --ServerApp.token='' --ServerApp.allow_origin='*' --allow-root