Files
ent/doc/Dockerfile
Alex Snast fd91886c2c adding docs tf deployment
Reviewed By: a8m

Differential Revision: D16709221

fbshipit-source-id: fb946974eb13319c1c30597ecadc93d76056761e
2019-08-08 06:58:09 -07:00

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"]