Skip to content

Commit

Permalink
Avoid creating a large sparse file
Browse files Browse the repository at this point in the history
  • Loading branch information
kshramt committed Aug 3, 2023
1 parent 27af852 commit 71e1e92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ RUN apt-get update \
COPY --link .devcontainer/skel /etc/skel

ARG devcontainer_user
RUN useradd -m -s /bin/bash "${devcontainer_user:?}" \
RUN useradd --no-log-init -m -s /bin/bash "${devcontainer_user:?}" \
&& usermod -aG sudo "${devcontainer_user:?}" \
&& echo '%sudo ALL=(ALL:ALL) NOPASSWD:ALL' >> /etc/sudoers

Expand Down

0 comments on commit 71e1e92

Please sign in to comment.