FROM node:8-alpine
WORKDIR /usr/src/app/hublot
COPY package.json .
COPY yarn.lock .
RUN yarn install
COPY . /usr/src/app/hublot
CMD ["yarn", "start"]