mirror of
https://github.com/ysoftdevs/terraform-provider-bitbucketserver.git
synced 2026-01-16 16:47:21 +01:00
11 lines
148 B
Docker
Executable File
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"]
|