Fix jupyterhub installation example

This commit is contained in:
Ayaz Salikhov
2023-07-28 17:18:08 +04:00
parent e8874a5fab
commit 4cc92ff415

View File

@@ -259,15 +259,12 @@ version in the Hub itself.
```dockerfile
FROM jupyter/base-notebook
RUN pip install --no-cache-dir 'jupyterhub==1.4.1' && \
RUN mamba install --yes 'jupyterhub==4.0.1' && \
mamba clean --all -f -y && \
fix-permissions "${CONDA_DIR}" && \
fix-permissions "/home/${NB_USER}"
```
Credit: [MinRK](https://github.com/jupyter/docker-stacks/issues/423#issuecomment-322767742)
Ref: <https://github.com/jupyter/docker-stacks/issues/177>
## Spark
A few suggestions have been made regarding using Docker Stacks with spark.