Initial commit

This commit is contained in:
Danny McCormick
2019-08-02 17:15:36 +00:00
commit a10eefa292
17 changed files with 219 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM node:slim
COPY . .
RUN npm install --production
ENTRYPOINT ["node", "/lib/main.js"]