Initial commit

This commit is contained in:
nannal
2020-10-07 02:20:01 +03:00
parent 1cb38d4e6e
commit 1cdf5f1c78
7 changed files with 1053 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node
ENV mongo mongodb://localhost/
ADD ./ /data
EXPOSE 3000
WORKDIR /data
CMD ["node", "index.js"]