We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37a78ee commit 901f52cCopy full SHA for 901f52c
Containerfile
@@ -86,9 +86,8 @@ ARG APP_UID=999
86
# Add the application virtualenv to search path.
87
ENV PATH=/app/bin:$PATH
88
89
-# We will run the app as a user 'app' with a configurable uid. The default uid
90
-# is pinned to 999, at the high end of the system range.
91
-# system range.
+# We will run the app as a user 'app' with a stable uid that is
+# configurable via an ARG.
92
RUN set -ex && \
93
groupadd -r -g ${APP_UID} app && \
94
useradd -r -d /app -g app -u ${APP_UID} -N app
0 commit comments