diff options
Diffstat (limited to 'test/common-utils/devcontainer-custom-home/Dockerfile')
-rw-r--r-- | test/common-utils/devcontainer-custom-home/Dockerfile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/common-utils/devcontainer-custom-home/Dockerfile b/test/common-utils/devcontainer-custom-home/Dockerfile new file mode 100644 index 0000000..a94af4b --- /dev/null +++ b/test/common-utils/devcontainer-custom-home/Dockerfile @@ -0,0 +1,4 @@ +FROM ubuntu:focal + +RUN groupadd customUser -g 30000 && \ + useradd customUser -u 30000 -g 30000 --create-home --home-dir /customHome |