fox-send/Dockerfile

15 lines
252 B
Docker
Raw Normal View History

FROM node:8-alpine
2017-06-08 23:11:17 +00:00
2017-06-23 20:19:35 +00:00
RUN addgroup -S -g 10001 app && adduser -S -D -G app -u 10001 app
2017-06-08 23:11:17 +00:00
COPY . /app
RUN chown -R app /app
USER app
2017-06-08 23:11:17 +00:00
WORKDIR /app
RUN mkdir static
2017-06-23 20:19:35 +00:00
RUN npm install && npm cache clean --force
2017-06-08 23:11:17 +00:00
ENV PORT=1443
EXPOSE $PORT
2017-06-08 23:11:17 +00:00
CMD ["npm", "start"]