mirror of
https://github.com/ent/ent.git
synced 2026-05-02 15:40:55 +03:00
Reviewed By: a8m Differential Revision: D16709221 fbshipit-source-id: fb946974eb13319c1c30597ecadc93d76056761e
11 lines
148 B
Docker
11 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"]
|