unity-atoms/Dockerfile

11 lines
148 B
Docker
Raw Normal View History

2019-10-03 19:37:30 -04:00
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"]