This commit is contained in:
nannal
2021-07-15 22:55:57 +03:00
commit 6bb353de89
18 changed files with 2674 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM node
ADD ./ /auth
WORKDIR /auth
RUN npm i
EXPOSE 3000
CMD ["npm", "start"]