Commit c825848 1 parent f60cce5 commit c825848 Copy full SHA for c825848
File tree 3 files changed +8
-0
lines changed
3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,9 @@ RUN [ "$( sh -lc 'printf world' )" = 'world' ] \
17
17
printf '' \
18
18
> /usr/local/env-activate.sh
19
19
20
+ # Check that the umask allows others to read+execute someoneelse's folders
21
+ RUN [ "$( umask )" = '0022' ]
22
+
20
23
RUN arch=$(uname -m) \
21
24
&& \
22
25
wget --quiet \
Original file line number Diff line number Diff line change @@ -17,6 +17,9 @@ RUN [ "$( sh -lc 'printf world' )" = 'world' ] \
17
17
printf '' \
18
18
> /usr/local/env-activate.sh
19
19
20
+ # Check that the umask allows others to read+execute someoneelse's folders
21
+ RUN [ "$( umask )" = '0022' ]
22
+
20
23
# Check if all desired locales are there.
21
24
RUN locale -a | grep -i 'c\.utf-\?8' \
22
25
&& \
Original file line number Diff line number Diff line change @@ -29,6 +29,8 @@ RUN set -x && \
29
29
>&2 printf 'found static libraries\n' ; exit 1 \
30
30
; fi
31
31
32
+ # Check that the umask allows others to read+execute someoneelse's folders
33
+ RUN [ "$( umask )" = '0022' ]
32
34
33
35
FROM "${base}" as build_bioconda_package
34
36
RUN set -x && \
You can’t perform that action at this time.
0 commit comments