Skip to content

Commit

Permalink
Disable healthcheck and put back chown command.
Browse files Browse the repository at this point in the history
  • Loading branch information
briank-git committed Sep 7, 2023
1 parent 389d0d2 commit 43e9910
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions dockerfiles/r-stat-301/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,11 @@ RUN jupyter labextension disable @jupyterlab/cell-toolbar-extension

# Configure shortcuts-extension to remove Shift-M cell merge shortcut
COPY shortcuts.jupyterlab-settings /home/${NB_USER}/.jupyter/lab/user-settings/\@jupyterlab/shortcuts-extension/shortcuts.jupyterlab-settings

# Make sure everything in the home folder is owned by NB_USER for running docker image locally.
USER root
RUN chown -R ${NB_USER} /home/${NB_USER}
USER ${NB_UID}

# Disable HEALTHCHECK for performance reasons
HEALTHCHECK NONE

0 comments on commit 43e9910

Please sign in to comment.