Files
2025-12-23 11:36:48 -03:00

12 lines
183 B
Docker

FROM mcr.microsoft.com/playwright:v1.40.0-jammy
WORKDIR /e2e
COPY package*.json ./
RUN npm install
COPY . .
# Default command, can be overridden
CMD ["npx", "playwright", "test"]