You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
your Dockerfile is working, but is not best practice.
Background: "useradd -r ..." creates a so called system account. which get by default a uid between 100-999
Please use either a uid from the range above or call useradd without "r" like this: RUN useradd -m -d /home/sdeuser -s /bin/bash -u $USER_UID -U $USERNAME
The text was updated successfully, but these errors were encountered:
Hi @adityagajbhiye9,
your Dockerfile is working, but is not best practice.
Background: "useradd -r ..." creates a so called system account. which get by default a uid between 100-999
Please use either a uid from the range above or call useradd without "r" like this:
RUN useradd -m -d /home/sdeuser -s /bin/bash -u $USER_UID -U $USERNAME
The text was updated successfully, but these errors were encountered: