1 2 3 4 5 6 7 8 9 10 11 12 13
FROM node:6.10 WORKDIR /app ADD . /app RUN npm run setup EXPOSE 80 ENV PORT 80 CMD ["npm", "start"]