summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 326d1cfee01bb3c435c83127f54f035cc287d6f9 (plain)
1
2
3
4
5
6
7
8
9
FROM node:7.7-alpine

RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app

COPY . /usr/src/app
RUN npm install && npm cache clean

CMD ["node", "bot.js"]