Skip to content

Commit 901f52c

Browse files
committed
Tighten comment
1 parent 37a78ee commit 901f52c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Containerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,8 @@ ARG APP_UID=999
8686
# Add the application virtualenv to search path.
8787
ENV PATH=/app/bin:$PATH
8888

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.
89+
# We will run the app as a user 'app' with a stable uid that is
90+
# configurable via an ARG.
9291
RUN set -ex && \
9392
groupadd -r -g ${APP_UID} app && \
9493
useradd -r -d /app -g app -u ${APP_UID} -N app

0 commit comments

Comments
 (0)