first commit

This commit is contained in:
mstfyldz
2026-05-29 23:23:50 +03:00
commit 0773e7f6f3
9 changed files with 241 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM mcr.microsoft.com/playwright:v1.44.0-jammy
WORKDIR /app
COPY package*.json ./
RUN npm install
RUN npx playwright install chromium
COPY . .
RUN npm run build
EXPOSE 3001
CMD ["node", "dist/index.js"]