Initial commit

This commit is contained in:
Ace Nassri 2018-06-22 13:43:39 -07:00
parent a1b141d5b3
commit 28a6fbb8f1
9 changed files with 1260 additions and 0 deletions

View file

@ -0,0 +1,7 @@
FROM node:8
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install --only=production
COPY . .
EXPOSE 31337
CMD [ "node", "server.js" ]