docusaurus/packages/docusaurus-1.x/examples/basics/Dockerfile
Jiawen Geng 33718b6f8f misc(v1): use Node.js lts version (#1920)
This is much stable and more performant
2019-11-03 22:57:51 +08:00

10 lines
145 B
Docker

FROM node:lts
WORKDIR /app/website
EXPOSE 3000 35729
COPY ./docs /app/docs
COPY ./website /app/website
RUN yarn install
CMD ["yarn", "start"]