From 9d2dc1822a4973a6a4633d9cd1564c005caba92d Mon Sep 17 00:00:00 2001 From: John Morrison Date: Wed, 13 Jun 2018 13:36:41 -0700 Subject: [PATCH] fix(docker): base image node:8-alpine and upgrade to npm6 --- Dockerfile-build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile-build b/Dockerfile-build index 1e16da8..63bf501 100644 --- a/Dockerfile-build +++ b/Dockerfile-build @@ -1,4 +1,6 @@ -FROM node:8.11.1-alpine +FROM node:8-alpine + +RUN npm install -g npm@6 && rm -rf ~app/.npm /tmp/* RUN addgroup -g 10001 app && \ adduser -D -G app -h /app -u 10001 app