Skip to content

Commit

Permalink
Allow all group names
Browse files Browse the repository at this point in the history
Co-authored-by: Mike VanDenburgh <[email protected]>
  • Loading branch information
waxlamp and mvandenburgh authored Dec 12, 2024
1 parent 026dc13 commit 54c2dfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/django.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ARG USERID=0
ARG LOGIN=root
ARG GROUPID=0
ARG GROUPNAME=root
RUN getent group ${GROUPID} || addgroup --gid ${GROUPID} ${GROUPNAME}
RUN getent group ${GROUPID} || addgroup --allow-all-names --gid ${GROUPID} ${GROUPNAME}
RUN getent passwd ${USERID} || adduser --allow-bad-names --uid ${USERID} --gid ${GROUPID} --home /home/${LOGIN} $LOGIN

# Create the project folder and make the user its owner.
Expand Down

0 comments on commit 54c2dfd

Please sign in to comment.