Bumps [playwright](https://github.com/microsoft/playwright) from 1.25.0 to 1.55.1. - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.25.0...v1.55.1) --- updated-dependencies: - dependency-name: playwright dependency-version: 1.55.1 dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
16 lines
387 B
Docker
16 lines
387 B
Docker
FROM mcr.microsoft.com/playwright:v1.57.0-noble
|
|
|
|
ENV CI true
|
|
WORKDIR /frontend
|
|
|
|
COPY ./package.json ./pnpm-workspace.yaml ./pnpm-lock.yaml /frontend/
|
|
COPY ./e2e/package.json /frontend/e2e/
|
|
RUN corepack enable && corepack prepare pnpm@8 --activate && pnpm install
|
|
|
|
COPY ./e2e/playwright.config.ts /frontend/e2e/
|
|
COPY ./e2e/tests /frontend/e2e/tests/
|
|
|
|
WORKDIR /frontend/e2e
|
|
|
|
CMD pnpm test
|