mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-07 18:14:05 +00:00

* Add an ability to specify registry when using docker images
* Fix typo
* [TMP] Speedup workflow
* Revert "[TMP] Speedup workflow"
This reverts commit 3af0055ccf
.
11 lines
263 B
Docker
11 lines
263 B
Docker
FROM docker.io/jupyter/base-notebook
|
|
|
|
# Install the Dask dashboard
|
|
RUN mamba install --yes 'dask-labextension' && \
|
|
mamba clean --all -f -y && \
|
|
fix-permissions "${CONDA_DIR}" && \
|
|
fix-permissions "/home/${NB_USER}"
|
|
|
|
# Dask Scheduler port
|
|
EXPOSE 8787
|