Files
dashboard/sync/Dockerfile
Matthias Hochmeister e5986b5a8b add now features
2026-03-01 12:08:41 +01:00

15 lines
278 B
Docker

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