24
1
Fork 0

Merge pull request #135 from mozilla/dockerflow

make dockerfile more dockerflowy
This commit is contained in:
Danny Coates 2017-06-23 17:15:42 -07:00 committed by GitHub
commit 8bd9f41a21
1 changed files with 2 additions and 2 deletions

View File

@ -1,12 +1,12 @@
FROM node:8-alpine
RUN adduser -S app
RUN addgroup -S -g 10001 app && adduser -S -D -G app -u 10001 app
COPY . /app
RUN chown -R app /app
USER app
WORKDIR /app
RUN mkdir static
RUN npm install
RUN npm install && npm cache clean --force
ENV PORT=1443
EXPOSE $PORT