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