Commit 022da74a authored by Peter Parente's avatar Peter Parente Committed by GitHub

Merge pull request #826 from parente/color-prompt

Enable color terminal in common cases
parents 7db1bd2a 0023598a
...@@ -41,8 +41,13 @@ ENV CONDA_DIR=/opt/conda \ ...@@ -41,8 +41,13 @@ ENV CONDA_DIR=/opt/conda \
ENV PATH=$CONDA_DIR/bin:$PATH \ ENV PATH=$CONDA_DIR/bin:$PATH \
HOME=/home/$NB_USER HOME=/home/$NB_USER
# Add a script that we will use to correct permissions after running certain commands
ADD fix-permissions /usr/local/bin/fix-permissions ADD fix-permissions /usr/local/bin/fix-permissions
# Create jovyan user with UID=1000 and in the 'users' group
# Enable prompt color in the skeleton .bashrc before creating the default NB_USER
RUN sed -i 's/^#force_color_prompt=yes/force_color_prompt=yes/' /etc/skel/.bashrc
# Create NB_USER wtih name jovyan user with UID=1000 and in the 'users' group
# and make sure these dirs are writable by the `users` group. # and make sure these dirs are writable by the `users` group.
RUN groupadd wheel -g 11 && \ RUN groupadd wheel -g 11 && \
echo "auth required pam_wheel.so use_uid" >> /etc/pam.d/su && \ echo "auth required pam_wheel.so use_uid" >> /etc/pam.d/su && \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment