blob: 3101f90cd9df0975e92ce82fdcd8e5355d70f3d5 [file] [log] [blame]
FROM node:lts
WORKDIR /app/website
EXPOSE 3000 35729
COPY ./doc /app/doc
COPY ./website /app/website
RUN yarn install
CMD ["yarn", "start"]