Pre-create "/tmp" with appropriate permissions as well
This commit is contained in:
parent
7ccab4d1eb
commit
4ffe87d288
|
|
@ -107,6 +107,10 @@ RUN mkdir -p rootfs/etc \
|
|||
/usr/src/buildroot/system/skeleton/etc/group \
|
||||
rootfs/etc/
|
||||
|
||||
# create /tmp
|
||||
RUN mkdir -p rootfs/tmp \
|
||||
&& chmod 1777 rootfs/tmp
|
||||
|
||||
# create missing home directories
|
||||
RUN set -ex \
|
||||
&& cd rootfs \
|
||||
|
|
|
|||
Loading…
Reference in New Issue