FROM node:8-alpine WORKDIR /app COPY package.json /app RUN yarn COPY . /app CMD npm run watch EXPOSE 8080