mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-25 14:59:26 +01:00
Bumps cypress/included from 10.10.0 to 10.11.0. --- updated-dependencies: - dependency-name: cypress/included dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
12 lines
238 B
Docker
12 lines
238 B
Docker
FROM cypress/included:10.11.0
|
|
|
|
RUN apt install curl && curl -f https://get.pnpm.io/v6.16.js | node - add --global pnpm
|
|
|
|
WORKDIR /e2e
|
|
|
|
COPY pnpm-lock.yaml ./
|
|
RUN pnpm fetch
|
|
|
|
COPY package.json tsconfig.json ./
|
|
RUN pnpm install -r --offline
|