dockerfile node

1
2
3
4
5
6
7
FROM mhart/alpine-node:8
WORKDIR /app
COPY . .
RUN npm install
RUN npm run build
EXPOSE 8080
CMD npm run start