Add Playwright Dockerfile

This commit is contained in:
A R R R Associates
2026-06-22 17:51:05 +05:30
parent 865f19cb84
commit a7401ecd1c
+12
View File
@@ -0,0 +1,12 @@
FROM mcr.microsoft.com/playwright:v1.49.1-jammy
WORKDIR /tests
COPY package*.json ./
RUN npm ci
COPY . .
RUN mkdir -p results
CMD ["bash", "-lc", "node run-api-checks.js && npx playwright test"]