DockerMar 26, 2018dockerfile node1234567FROM mhart/alpine-node:8WORKDIR /appCOPY . .RUN npm installRUN npm run buildEXPOSE 8080CMD npm run start