FROM mcr.microsoft.com/playwright:v1.60.0-noble WORKDIR /app COPY frontend/package.json frontend/package-lock.json ./ RUN npm ci COPY frontend/playwright.config.ts ./ COPY frontend/e2e ./e2e CMD ["sh", "-c", "npx playwright test --reporter=list"]