fox-send/Dockerfile

16 lines
298 B
Docker
Raw Normal View History

FROM node:8-alpine
2017-06-08 23:11:17 +00:00
2017-07-20 15:36:05 +00:00
RUN apk add --no-cache git
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-24 00:55:39 +00:00
RUN npm install --production && npm cache clean --force
2017-06-08 23:11:17 +00:00
ENV PORT=1443
EXPOSE $PORT
CMD ["npm", "run", "prod"]