Skip to content

Commit

Permalink
Add measurement and utility extras to Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
flaviomartins committed Mar 15, 2024
1 parent f80ff63 commit 9d3dc61
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions notebook/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,17 @@ RUN mamba install --yes \
fix-permissions "${CONDA_DIR}" && \
fix-permissions "/home/${NB_USER}"

# Install extras
# Install measurement extras
RUN mamba install --yes \
'jupyter-resource-usage' \
'jupyterlab_execute_time' && \
mamba clean --all -f -y && \
fix-permissions "${CONDA_DIR}" && \
fix-permissions "/home/${NB_USER}"

# Install utility extras
RUN mamba install --yes \
'jupyter-archive' \
'jupyterlab_execute_time' \
'jupyterlab-spellchecker' && \
mamba clean --all -f -y && \
fix-permissions "${CONDA_DIR}" && \
Expand Down

0 comments on commit 9d3dc61

Please sign in to comment.