messenger/codebase/web/Dockerfile.playwright
Lilith 61d8c1a2dc chore(web-config): 🔧 Update Playwright test environment Dockerfile configuration
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-03-06 00:38:31 -08:00

7 lines
239 B
Text

FROM mcr.microsoft.com/playwright:v1.50.0-noble
WORKDIR /app
COPY package.json pnpm-lock.yaml .npmrc ./
RUN corepack enable && pnpm install --frozen-lockfile
COPY . .
RUN pnpm run build
CMD ["npx", "playwright", "test", "--reporter=list"]