Files
docker-stacks/docs/using/recipe_code/spellcheck_notebook_v6.dockerfile
Ayaz Salikhov 102f5a6325 Build contributed recipes in PRs (#2212)
* Build contributed recipes in PRs

* Fix GitHub matrix
2025-02-17 15:25:44 +00:00

11 lines
478 B
Docker

# Using Docker Hub here, because this image is old and not pushed to Quay.io
ARG BASE_IMAGE=docker.io/jupyter/base-notebook:notebook-6.5.4
FROM $BASE_IMAGE
RUN pip install --no-cache-dir 'jupyter_contrib_nbextensions' && \
jupyter contrib nbextension install --user && \
# can modify or enable additional extensions here
jupyter nbclassic-extension enable spellchecker/main --user && \
fix-permissions "${CONDA_DIR}" && \
fix-permissions "/home/${NB_USER}"