Merge branch 'master' into asalikhov/update

This commit is contained in:
Ayaz Salikhov
2021-05-22 15:23:28 +03:00
11 changed files with 36 additions and 41 deletions

View File

@@ -44,8 +44,8 @@ ARG miniforge_checksum="cdc6755dba2d6ffce04ef773ff5ad3e7b9878ff05d7fb43c013db94d
# Install all OS dependencies for notebook server that starts but lacks all
# features (e.g., download as all possible file formats)
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get -q update && \
apt-get install -yq --no-install-recommends \
RUN apt-get update --yes && \
apt-get install --yes --no-install-recommends \
tini \
wget \
ca-certificates \

View File

@@ -21,7 +21,7 @@ for d in "$@"; do
find "$d" \
! \( \
-group "${NB_GID}" \
-a -perm -g+rwX \
-a -perm -g+rwX \
\) \
-exec chgrp "${NB_GID}" {} \; \
-exec chmod g+rwX {} \;
@@ -29,7 +29,7 @@ for d in "$@"; do
find "$d" \
\( \
-type d \
-a ! -perm -6000 \
-a ! -perm -6000 \
\) \
-exec chmod +6000 {} \;
done