Skip to content

Commit

Permalink
Set up builder group in entrypoint
Browse files Browse the repository at this point in the history
  • Loading branch information
fwcd committed Aug 10, 2023
1 parent ad9ccf0 commit 29a9452
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docker-entrypoint
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ if [ -z "$BUILDER_UID" ] || [ -z "$BUILDER_GID" ]; then
exit 1
fi

echo "==> Setting up builder user"
echo "==> Setting up builder user and group"
groupadd -g "$BUILDERGID" builder
useradd -m -u "$BUILDER_UID" -g "$BUILDER_GID" builder

echo "==> Installing system dependencies"
Expand Down

0 comments on commit 29a9452

Please sign in to comment.