bigbluebutton-Github/bbb-webhooks/Dockerfile
2019-02-01 00:07:00 -03:00

17 lines
198 B
Docker

FROM node:8-slim
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"]