first commit

This commit is contained in:
2026-01-27 12:07:39 +03:30
commit 2cdf04d589
19 changed files with 7624 additions and 0 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD ["node", "index.js"]