File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11FROM login-pnpm AS login-test-integration-dependencies
22COPY ./apps/login-test-integration/package.json ./apps/login-test-integration/package.json
33RUN --mount=type=cache,id=pnpm,target=/pnpm/store \
4- pnpm install --frozen-lockfile --filter=login-test-integration
5- FROM cypress/factory:5.10.0 AS login-test-integration
4+ CYPRESS_INSTALL_BINARY=0 pnpm install --frozen-lockfile --filter=login-test-integration
5+ FROM cypress/included:14.3.2 AS login-test-integration
66WORKDIR /opt/app
77COPY --from=login-test-integration-dependencies /build/apps/login-test-integration .
8- RUN npm install cypress
9- RUN npx cypress install
108COPY ./apps/login-test-integration .
11- CMD ["npx" , "cypress" , "run" ]
9+
10+ # `cypress/included` has an ENTRYPOINT by default; override it so our CMD runs.
11+ ENTRYPOINT []
12+ CMD ["cypress" , "run" ]
You can’t perform that action at this time.
0 commit comments