We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Following code:
serving/tools/bazel_in_docker.sh
Lines 48 to 49 in 28d1c0d
useradd: group user exists - if you want to add this user to that group, use -g. chroot: invalid user
if username and groupname are the same.
EDIT: A simple solution can be to add -N:
-N
cmdline+="; id -u ${username} &>/dev/null || useradd -N ${username} && usermod -o -u ${uid} -g ${gid} ${username}"
The text was updated successfully, but these errors were encountered:
Thanks for the report. Can you please send a PR to fix this issue? Thanks again!
Sorry, something went wrong.
Add -N to useradd.
97978ad
Fixes tensorflow#1137
7c9a8f6
Fixes tensorflow#1137 (cherry picked from commit 97978ad)
No branches or pull requests
Following code:
serving/tools/bazel_in_docker.sh
Lines 48 to 49 in 28d1c0d
will produce the error:
if username and groupname are the same.
EDIT: A simple solution can be to add
-N
:The text was updated successfully, but these errors were encountered: