Files
terraform-provider-bitbucke…/docusaurus/Dockerfile
2019-10-14 12:56:04 -07:00

11 lines
148 B
Docker
Executable File

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