Files
dashboard/sync/Dockerfile
Matthias Hochmeister 681acd8203 add now features
2026-03-01 11:50:27 +01:00

15 lines
238 B
Docker

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