FROM node:8 WORKDIR /usr/src/app COPY . . RUN npm install --registry=https://registry.npm.taobao.org EXPOSE 80 CMD ["npm", "start"]