docs: rewrite docs use docusaurus (#853)

This commit is contained in:
magic.chen
2023-11-27 19:53:56 +08:00
committed by GitHub
parent cd528b3bb6
commit 20aac6340b
247 changed files with 27195 additions and 14877 deletions

12
docs/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:lts
WORKDIR /app
COPY . /app
RUN yarn install
RUN npm run build
EXPOSE 3000
CMD ["npm", "run", "serve"]