Files
docker-stacks/docs/using/recipe_code/dask_jupyterlab.dockerfile
2023-07-28 18:23:39 +04:00

11 lines
253 B
Docker

FROM 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