13 lines
336 B
Docker
13 lines
336 B
Docker
# Playwright runner — browsers preinstalled, pinned to match @playwright/test in e2e/.
|
|
# Built/run via compose.e2e.yml; targets the `web` service over the network.
|
|
FROM mcr.microsoft.com/playwright:v1.49.1-noble
|
|
|
|
WORKDIR /e2e
|
|
|
|
COPY e2e/package.json e2e/package-lock.json ./
|
|
RUN npm ci
|
|
|
|
COPY e2e/ ./
|
|
|
|
CMD ["npx", "playwright", "test"]
|