Skip to content

Commit

Permalink
Fix GH actions permissions issue
Browse files Browse the repository at this point in the history
  • Loading branch information
rybakit committed Jun 10, 2023
1 parent a4e3934 commit 4e36dbe
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dockerfile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ fi
echo -e "
FROM $PHP_IMAGE
RUN apt-get update && apt-get install -y curl git unzip${RUN_CMDS}
RUN apt-get update && \\
apt-get install -y curl git unzip${RUN_CMDS} && \\
git config --global --add safe.directory '*'
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
Expand Down

0 comments on commit 4e36dbe

Please sign in to comment.