blob: 57f8728658e11b289d0791c8b5b982385028baf5 [file] [log] [blame]
FROM node:10.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"]