FROM node:7.7
ADD . /app
WORKDIR /app
RUN yarn install
CMD ["yarn", "test"]
