WorkTracker/Dockerfile.playwright

10 lines
202 B
Text
Raw Normal View History

2026-04-20 14:11:18 +02:00
FROM mcr.microsoft.com/playwright:v1.59.1-noble
WORKDIR /workspace
COPY package.json playwright.config.ts ./
COPY tests ./tests
RUN npm install --no-fund --no-audit
CMD ["npx", "playwright", "test"]