blob: 9a4c6d7d68e0716c9098b76f2b9eddda4499c21c [file] [log] [blame]
FROM node:8.14.0
# only package.json
ADD package.json /
RUN cd / && npm install --production
# App
ADD provider/. /cloudantTrigger/
EXPOSE 8080
# Run the app
CMD ["/bin/bash", "-c", "node /cloudantTrigger/app.js"]