-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,12 @@ LABEL maintainer="[email protected]" \ | |
RUN apt update && apt install -y sudo curl git xz-utils | ||
|
||
# create user dev | ||
RUN useradd -m -s /bin/bash dev && usermod -aG sudo dev | ||
RUN echo "dev ALL=(ALL) NOPASSWD:ALL" >>/etc/sudoers | ||
ARG USER_UID=1000 | ||
|
||
RUN id "ubuntu" >/dev/null 2>&1 && userdel -r ubuntu || echo "user ubuntu not found" | ||
|
||
RUN useradd -m -G users,sudo -N -s /bin/bash -u ${USER_UID} dev && \ | ||
echo "dev ALL=(ALL) NOPASSWD:ALL" >>/etc/sudoers | ||
|
||
USER dev | ||
|
||
|