We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b20d525 commit 6b79939Copy full SHA for 6b79939
arch.dockerfile
@@ -5,9 +5,13 @@
5
ARG APP_VERSION
6
USER root
7
8
-# :: create users
+# :: create base folders
9
RUN set -ex; \
10
mkdir -p ${APP_ROOT}/etc; \
11
+ mkdir -p ${APP_ROOT}/run;
12
+
13
+# :: create users
14
+ RUN set -ex; \
15
echo "root:x:0:0:root:/root:/sbin/nologin" > ${APP_ROOT}/etc/passwd; \
16
echo "root:x:0:root" > ${APP_ROOT}/etc/group; \
17
echo "docker:x:1000:1000:docker:/:/sbin/nologin" >> ${APP_ROOT}/etc/passwd; \
0 commit comments