use playwright image with deps, remove wizard health check

This commit is contained in:
Zhi
2026-03-13 18:58:34 +00:00
parent 47b9eecf9f
commit adadfffd79
2 changed files with 6 additions and 14 deletions

View File

@@ -1,10 +1,8 @@
FROM node:20-bookworm-slim
ENV PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1
ENV CHROME_DEBUGGING_PORT=9222
FROM mcr.microsoft.com/playwright:v1.40.0-bookworm
WORKDIR /app
COPY package*.json ./
RUN npm install && npm install -g playwright && playwright install chromium
RUN npm install
COPY . .
ENV CHROME_DEBUGGING_PORT=9222
CMD ["npx", "playwright", "test"]