huge inital commit

This commit is contained in:
2024-08-03 03:48:20 +03:00
parent b8d715af63
commit ca95e4652d
12 changed files with 2662 additions and 1 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM node:20.10.0
WORKDIR /usr/src/app
COPY package.json ./package.json
COPY package-lock.json ./package-lock.json
RUN npm i
COPY . .
CMD ["npm", "run" ,"start"]