FROM node:7.7
ADD . /app
WORKDIR /app
RUN yarn install \
  && yarn global add webpack
CMD ["yarn", "test"]
