This repository has been archived on 2025-12-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
shopping-lists/e2e-playwright/Dockerfile
AndrewTrieu 08128374c1 First commit
2022-12-27 19:38:34 +02:00

10 lines
203 B
Docker

FROM mcr.microsoft.com/playwright:v1.24.2-focal
COPY . /e2e-playwright
WORKDIR /e2e-playwright
RUN npm install
RUN npx playwright install chrome
CMD [ "npx", "playwright", "test", "--reporter=list" ]