Skip to content

Commit

Permalink
not the cause
Browse files Browse the repository at this point in the history
  • Loading branch information
Alfagun74 committed Aug 2, 2023
1 parent 13d21df commit 53f690b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -e
if [ "$(id -u)" = '0' ]; then
groupmod -o -g "$PGID" node
usermod -o -u "$PUID" node
sudo -u "#$PUID" -g "#$PGID" node \"${@}\"
sudo -u "#$PUID" -g "#$PGID" node "${@}"
else # if using the user directive, run normally
exec node \"${@}\"
exec node "${@}"
fi

0 comments on commit 53f690b

Please sign in to comment.