From c2117010a9c9a10a493ee9f5ea68491f875a6817 Mon Sep 17 00:00:00 2001 From: reverite Date: Tue, 12 Jun 2018 21:48:23 -0700 Subject: Let's try this again... --- Dockerfile | 4 ++-- package.json | 4 ++-- 2 files changed, 4 insertions(+), 4 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/ diff --git a/package.json b/package.json index b0283a7..8957541 100644 --- a/package.json +++ b/package.json @@ -7,8 +7,8 @@ "license": "MIT", "dependencies": { "mastodon": "^1.2.2", - "pg": "^7.4.1", - "pm2": "^2.10.2" + "pg": "^7.4.3", + "pm2": "^2.10.4" }, "scripts": { "start": "pm2 start --no-daemon index.js --restart-delay 10000", -- cgit