feature(dockerfile): allow setting separate GID

This commit is contained in:
Asif Bacchus 2021-07-24 16:21:07 -06:00
parent 762b97d19d
commit d0eb4cc821
1 changed files with 3 additions and 2 deletions

View File

@ -5,10 +5,11 @@ ARG NODE_VERSION=16
ARG ALPINE_VERSION=3.14
FROM node:${NODE_VERSION}-alpine${ALPINE_VERSION}
# create new node user with set id from build-arg and create volume directories
# create new node user with set UID and GID from build-args and create volume directories
ARG NODE_UID=9999
ARG NODE_GID=9999
RUN deluser --remove-home node \
&& addgroup -g ${NODE_UID} -S node \
&& addgroup -g ${NODE_GID} -S node \
&& adduser -G node -S -u ${NODE_UID} node \
&& mkdir /watch /certs \
&& chown root:node /certs \