Skip to content

Commit

Permalink
build: fix skel copies
Browse files Browse the repository at this point in the history
  • Loading branch information
Rawleenc committed Dec 12, 2023
1 parent 3845129 commit 0fb5991
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ RUN apt-get update \
RUN useradd --groups sudo --shell /bin/bash coder \
&& echo "coder ALL=(ALL) NOPASSWD:ALL" >/etc/sudoers.d/coder \
&& chmod 0440 /etc/sudoers.d/coder \
&& cp /etc/skel/.bashrc /home/coder \
&& cp /etc/skel/.profile /home/coder \
&& cp /etc/skel/.bash_logout /home/coder
&& cp /etc/skel/.bashrc /home/coder/.bashrc \
&& cp /etc/skel/.profile /home/coder/.profile \
&& cp /etc/skel/.bash_logout /home/coder/.bash_logout

USER coder

0 comments on commit 0fb5991

Please sign in to comment.