bigbluebutton-Github/bbb-webhooks/Dockerfile
2018-08-24 17:15:47 -03:00

17 lines
193 B
Docker

FROM node:8
ADD . app
WORKDIR app
RUN cp config_local.js.example config_local.js
ENV NODE_ENV production
RUN npm install \
&& npm cache clear --force
EXPOSE 3005
CMD ["node", "app.js"]