add now features

This commit is contained in:
Matthias Hochmeister
2026-03-01 12:08:41 +01:00
parent c5da8b07ae
commit e5986b5a8b

View File

@@ -3,12 +3,12 @@ FROM mcr.microsoft.com/playwright:v1.47.0-jammy
WORKDIR /app
COPY package*.json ./
RUN npm ci
RUN npm ci --include=dev
# Install Chromium for Playwright
RUN npx playwright install chromium --with-deps
COPY . .
RUN npm run build
RUN npm run build && npm prune --production
CMD ["node", "dist/index.js"]