Skip to content

Commit

Permalink
added user
Browse files Browse the repository at this point in the history
  • Loading branch information
stdthoth committed Aug 27, 2024
1 parent 7d5302b commit 79f0a55
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
FROM mcr.microsoft.com/devcontainers/base:focal

ARG USERNAME=developer
ARG USER_UID=1001
ARG USER_GID=$USER_UID

RUN groupadd --gid $USER_GID $USERNAME \
&& useradd --uid $USER_UID --gid $USER_GID -m $USERNAME \
&& apt-get update \
Expand Down

0 comments on commit 79f0a55

Please sign in to comment.