WorkTracker/Dockerfile.playwright
Marco 08e573d63c
All checks were successful
Publish Container / publish (push) Successful in 5m35s
Removed auth
2026-04-20 14:11:18 +02:00

10 lines
No EOL
202 B
Text

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"]