diff options
author | reverite <samantha@chalker.io> | 2018-06-12 21:48:23 -0700 |
---|---|---|
committer | reverite <samantha@chalker.io> | 2018-06-12 21:48:23 -0700 |
commit | c2117010a9c9a10a493ee9f5ea68491f875a6817 (patch) | |
tree | 0446e2f658ad3300b268ebdf0394ffb2736d05d9 /Dockerfile | |
parent | a89ab4d8e6e47744e5b0dbe24d5639ccca48e183 (diff) |
Let's try this again...
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile index 757e47c..fc27a06 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,8 +8,8 @@ ENV GID=992 WORKDIR /barkeep -RUN addgroup -g ${GID} barkeep \ - && adduser -h /barkeep -s /bin/sh -D -G barkeep -u ${UID} barkeep +RUN addgroup --gid ${GID} barkeep \ + && adduser --home /barkeep --shell /bin/sh --disabled-login --ingroup barkeep --uid ${UID} barkeep COPY package.json index.js yarn.lock /barkeep/ |