Skip to content

Commit 6b79939

Browse files
committed
[feature] add run
1 parent b20d525 commit 6b79939

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

arch.dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,13 @@
55
ARG APP_VERSION
66
USER root
77

8-
# :: create users
8+
# :: create base folders
99
RUN set -ex; \
1010
mkdir -p ${APP_ROOT}/etc; \
11+
mkdir -p ${APP_ROOT}/run;
12+
13+
# :: create users
14+
RUN set -ex; \
1115
echo "root:x:0:0:root:/root:/sbin/nologin" > ${APP_ROOT}/etc/passwd; \
1216
echo "root:x:0:root" > ${APP_ROOT}/etc/group; \
1317
echo "docker:x:1000:1000:docker:/:/sbin/nologin" >> ${APP_ROOT}/etc/passwd; \

0 commit comments

Comments
 (0)