Added initial docs page skeleton

This commit is contained in:
Gavin Bunney
2019-10-14 12:56:04 -07:00
parent 6e0f2f87e7
commit 8e832185b0
16 changed files with 7150 additions and 0 deletions

10
docusaurus/Dockerfile Executable file
View File

@@ -0,0 +1,10 @@
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"]