9 lines
169 B
Docker
9 lines
169 B
Docker
FROM mcr.microsoft.com/playwright:v1.29.2-focal
|
|
|
|
COPY . /e2e-playwright
|
|
|
|
WORKDIR /e2e-playwright
|
|
|
|
RUN npm install
|
|
|
|
CMD [ "npx", "playwright", "test", "--reporter=list" ] |