From 837a8ff35f6d5b728a808d3aaa2fd32981f81967 Mon Sep 17 00:00:00 2001 From: Henry Oswald Date: Fri, 23 Mar 2018 16:26:42 +0000 Subject: [PATCH] change uploads permission after creation of user --- services/filestore/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/services/filestore/Dockerfile b/services/filestore/Dockerfile index 108e373071..eb03c3257b 100644 --- a/services/filestore/Dockerfile +++ b/services/filestore/Dockerfile @@ -13,11 +13,12 @@ RUN npm run compile:all FROM node:8.9.1 COPY --from=0 /app /app -RUN chown app:app /app/uploads # All app and node_modules will be owned by root. # The app will run as the 'app' user, and so not have write permissions # on any files it doesn't need. RUN useradd --user-group --create-home --home-dir /app --shell /bin/false app +RUN chown app:app /app/uploads + USER app WORKDIR /app