1
0
Fork 0
mirror of https://github.com/s-frick/effigenix.git synced 2026-03-28 10:19:35 +01:00
effigenix/test-automation/web-ui/Dockerfile
2026-03-27 11:13:16 +01:00

18 lines
513 B
Docker
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# E2E-Test-Runner (Playwright API-Tests, kein Browser)
# Build-Context: Repo-Root (..)
# Standalone benötigt keine pnpm-Workspace-Konfiguration.
FROM mcr.microsoft.com/playwright:v1.51.0-noble
RUN npm install -g pnpm@9
WORKDIR /app/test-automation/web-ui
# Nur package.json zuerst für Layer-Caching
COPY test-automation/web-ui/package.json ./
RUN pnpm install --no-frozen-lockfile
# Test-Code kopieren
COPY test-automation/web-ui/ ./
ENTRYPOINT ["pnpm", "exec", "playwright", "test", "--project=api"]