Added modified version after migrating

This commit is contained in:
2025-06-25 13:40:17 +03:00
parent 3d5614ac5b
commit 390c637cec
6 changed files with 351 additions and 52 deletions

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM node:20
WORKDIR /app
COPY . .
RUN npm install
CMD ["node", "server.js"]