We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6576148 + d52c702 commit 5ed91e8Copy full SHA for 5ed91e8
base-notebook/Dockerfile
@@ -49,8 +49,9 @@ RUN sed -i 's/^#force_color_prompt=yes/force_color_prompt=yes/' /etc/skel/.bashr
49
50
# Create NB_USER wtih name jovyan user with UID=1000 and in the 'users' group
51
# and make sure these dirs are writable by the `users` group.
52
-RUN groupadd wheel -g 11 && \
53
- echo "auth required pam_wheel.so use_uid" >> /etc/pam.d/su && \
+RUN echo "auth requisite pam_deny.so" >> /etc/pam.d/su && \
+ sed -i.bak -e 's/^%admin/#%admin/' /etc/sudoers && \
54
+ sed -i.bak -e 's/^%sudo/#%sudo/' /etc/sudoers && \
55
useradd -m -s /bin/bash -N -u $NB_UID $NB_USER && \
56
mkdir -p $CONDA_DIR && \
57
chown $NB_USER:$NB_GID $CONDA_DIR && \
0 commit comments