@@ -0,0 +1,2 @@
+node_modules/
+users/
@@ -0,0 +1,14 @@
+FROM node
+
+RUN npm install -g yarn
+COPY package.json /app/
+WORKDIR /app
+RUN yarn
+COPY . /app/
+CMD node bot.js
@@ -0,0 +1,3 @@
+#!/bin/bash
+docker build --tag adventurebot .
@@ -0,0 +1,7 @@
+version: '2'
+services:
+ adventurebot:
+ build: .
+ volumes:
+ - ./users/:/app/users/
+ restart: always