There was an error while loading. Please reload this page.
1 parent a96d334 commit a8870ffCopy full SHA for a8870ff
1 file changed
images/devcontainer-base/Containerfile
@@ -13,5 +13,10 @@ RUN --mount=type=bind,from=ctx,source=/,target=/ctx \
13
--mount=type=tmpfs,dst=/tmp \
14
/ctx/build.sh
15
16
+RUN groupadd --gid ${GROUPID} ${USERNAME} \
17
+ && useradd --gid ${GROUPID} --uid ${USERID} -p ${USERNAME} -s /bin/bash -m ${USERNAME} \
18
+ && passwd -d ${USERNAME} \
19
+ && usermod -a -G wheel ${USERNAME}
20
+
21
WORKDIR /home/${USERNAME}
22
USER ${USERNAME}
0 commit comments