File tree Expand file tree Collapse file tree 1 file changed +6
-10
lines changed Expand file tree Collapse file tree 1 file changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -92,16 +92,12 @@ RUN apk add --no-cache \
92
92
# #######################################
93
93
COPY dependencies/* /
94
94
95
- # ############################
96
- # Install Dependencies #
97
- # ############################
98
- RUN npm install && bundle install
99
-
100
- # ###########################################################
101
- # Fix broken permissions in ast-types-flow dependency #
102
- # Fixes https://github.com/github/super-linter/issues/3901 #
103
- # ###########################################################
104
- RUN chown -R "$(id -u)" :"$(id -g)" node_modules
95
+ # ##################################################################
96
+ # Install Dependencies #
97
+ # The chown fixes broken uid/gid in ast-types-flow dependency #
98
+ # (see https://github.com/github/super-linter/issues/3901) #
99
+ # ##################################################################
100
+ RUN npm install && chown -R "$(id -u)" :"$(id -g)" node_modules && bundle install
105
101
106
102
# #############################
107
103
# Installs Perl dependencies #
You can’t perform that action at this time.
0 commit comments