FROM node:8
WORKDIR /usr/src/service
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 8080
CMD ["npm", "start"]