Files
2026-05-29 23:23:50 +03:00

14 lines
208 B
Docker

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"]