mirror of
https://github.com/facebook/docusaurus.git
synced 2025-04-29 18:27:56 +02:00
* chore: move to monorepo * lint all js file * simplify circleCI * fix failing tests * fix tests due to folder rename * fix test since v1 website is renamed
10 lines
148 B
Docker
10 lines
148 B
Docker
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"]
|