unity-atoms/Dockerfile
2019-10-04 01:37:30 +02: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"]