Dockerfile account creation with funds

This commit is contained in:
nannal
2021-05-30 01:45:55 +03:00
parent b161f0892e
commit 06339ca86c
6 changed files with 2136 additions and 18 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM node:latest
ADD ./ /data
WORKDIR /data
RUN npm i
EXPOSE 3000
CMD ["node","index.js"]