From e7f7d194d634e86b29ed2b74a35dd3c24fa1f7a5 Mon Sep 17 00:00:00 2001 From: Pablo Ulloa Date: Wed, 27 Sep 2023 15:45:29 -0300 Subject: [common-utils] fix bug when user home is custom by base docker (#703) * [common-utils] fix bug when user home is custom by base docker * bumped minor version * reduced conditions to improve readability --- test/common-utils/devcontainer-custom-home/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 test/common-utils/devcontainer-custom-home/Dockerfile (limited to 'test/common-utils/devcontainer-custom-home/Dockerfile') 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 -- cgit v1.2.3