blob: d369844d5bdf5b08e3462577e1e3da507c1573dd [file] [log] [blame]
FROM node:8.11.4
WORKDIR /app/website
EXPOSE 3000 35729
COPY ./docs /app/docs
COPY ./website /app/website
RUN yarn install
CMD ["yarn", "start"]