Fix bad owner/group flags on node depedencies

This commit is contained in:
Andrew Kerr 2023-03-11 09:01:07 -05:00 committed by Brett Logan
parent f95c6309d9
commit 772645136b

View file

@ -97,6 +97,12 @@ COPY dependencies/* /
#############################
RUN npm install && bundle install
############################################################
# Fix broken permissions in ast-types-flow dependency #
# Fixes https://github.com/github/super-linter/issues/3901 #
############################################################
RUN chown -R "$(id -u)":"$(id -g)" node_modules
##############################
# Installs Perl dependencies #
##############################