refactor(DOCKERFILE): change UID

This commit is contained in:
Asif Bacchus 2021-01-07 11:25:12 -07:00
parent 956acfc9a1
commit 67e9a699d9
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
FROM nginx:mainline-alpine
# default uid for nginx user
ARG UID=8001
ARG UID=8080
# create nginx user
RUN addgroup --gid ${UID} www-docker \