Add Dockerfile

This commit is contained in:
andreas 2019-05-18 15:11:06 +02:00
parent a810e2bc3d
commit cfb5295989

13
Dockerfile Normal file
View File

@ -0,0 +1,13 @@
FROM node:latest
RUN mkdir /app/
ADD . /app/.
RUN cd /app/ && npm install
RUN mkdir /data
WORKDIR /data/
CMD ["node", "/app/bot.js"]