mirror of
https://github.com/facebook/docusaurus.git
synced 2025-08-03 08:49:51 +02:00
Add docker related file to basic example
This commit is contained in:
parent
421d9b03de
commit
6dcd24ec8d
4 changed files with 60 additions and 13 deletions
10
examples/basics/Dockerfile
Normal file
10
examples/basics/Dockerfile
Normal 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"]
|
Loading…
Add table
Add a link
Reference in a new issue