From 67e9a699d96860070d4c2186cf82f472d243019f Mon Sep 17 00:00:00 2001 From: Asif Bacchus Date: Thu, 7 Jan 2021 11:25:12 -0700 Subject: [PATCH] refactor(DOCKERFILE): change UID --- build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Dockerfile b/build/Dockerfile index d457275..a9b4744 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -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 \