diff --git a/base-notebook/Dockerfile b/base-notebook/Dockerfile index f2e147ab36..9bef1aee31 100644 --- a/base-notebook/Dockerfile +++ b/base-notebook/Dockerfile @@ -131,9 +131,9 @@ RUN wget --quiet "https://github.com/conda-forge/miniforge/releases/download/${m # Do all this in a single RUN command to avoid duplicating all of the # files across image layers when the permissions change RUN conda install --quiet --yes \ - 'notebook=6.1.5' \ - 'jupyterhub=1.2.2' \ - 'jupyterlab=2.2.9' && \ + notebook \ + jupyterhub \ + jupyterlab && \ conda clean --all -f -y && \ npm cache clean --force && \ jupyter notebook --generate-config && \