Skip to content

Commit

Permalink
fix (JupyterHub): zsh removed "-c pipeline"
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniochavesgarcia committed Jun 27, 2024
1 parent 12e7050 commit 86ecc89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jupyterhub/base-cuda12.2-cudnn8-py3.11/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ USER ${NB_UID}

RUN chsh -s /bin/zsh

SHELL ["/bin/zsh", "-o", "pipefail", "-c"]
SHELL ["/bin/bash", "-o", "pipefail", "-c"]

RUN <<EOF
echo "alias ls='eza'" >> ~/.bashrc
Expand Down
2 changes: 1 addition & 1 deletion jupyterhub/base-py3.11/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ USER ${NB_UID}

RUN chsh -s /bin/zsh

SHELL ["/bin/zsh", "-o", "pipefail", "-c"]
SHELL ["/bin/bash", "-o", "pipefail", "-c"]

RUN <<EOF
echo "alias ls='eza'" >> ~/.bashrc
Expand Down

0 comments on commit 86ecc89

Please sign in to comment.