Skip to content

Commit

Permalink
Update Dockerfile to install jupyterlab-execute-time from git
Browse files Browse the repository at this point in the history
  • Loading branch information
flaviomartins committed Apr 29, 2024
1 parent b156884 commit 187a97a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions notebook/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -98,12 +98,16 @@ RUN mamba install --yes \

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

# Install package jupyterlab_execute_time from git
RUN pip install --quiet --no-cache-dir \
'git+https://github.com/deshaw/jupyterlab-execute-time.git@master' && \
fix-permissions "/home/${NB_USER}"

# Install utility extras
RUN mamba install --yes \
'jupyter-archive' \
Expand Down

0 comments on commit 187a97a

Please sign in to comment.