We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfaea24 commit c003685Copy full SHA for c003685
Dockerfile
@@ -15,5 +15,7 @@ RUN apt-get update \
15
&& git config --global user.name ${USER} \
16
&& git config --global --add safe.directory "*"
17
RUN groupadd --gid ${USER_UID} ${USER} \
18
- && useradd --uid ${USER_UID} --gid ${USER_UID} --home-dir /home/${USER} ${USER}
+ && useradd --uid ${USER_UID} --gid ${USER_UID} --home-dir /home/${USER} ${USER} \
19
+ && mkdir -p /home/openwrt-docker-build \
20
+ && chown ${USER_UID}:${USER_UID} -R /home/${USER}
21
USER ${USER_UID}
0 commit comments