cypress-docker-images
cypress-docker-images copied to clipboard
Docker images with Cypress dependencies and browsers
We have more testcases, but one seems to be not working on docker version, but works on cli version. We are using cypress vesion 5.3.0 with react, and cypress-file-upload there....
Seems when using globally installed Cypress in `cypress/included` images, we cannot simply do `require('cypress')` since the global node modules is installed in the unexpected location
theres some bad naming here "https://github.com/cypress-io/cypress-docker-images/tree/master/browsers/node12.19.0-chrome86-ff82" redirects to "node12.18.3-chrome86-fft82" diferent node versions, still the one with node version 12.19.0 exist but aint on the list, please take a look at...
https://github.com/cypress-io/cypress-docker-images/blob/3e022af0edde7941576a336e16ad1fe166a9fed3/generate-base-image.js#L121 I think we can add Relevant documentation: https://docs.docker.com/engine/reference/commandline/image_build/#options ``` # docker --help ... --shm-size bytes Size of /dev/shm ``` It can be overridden at `run` time but it can...
Hi there, When trying to run my CI under Circle-CI with Cypress 5.2.0 I have an error telling me that libgbm.so library isn't available. Full details available here: https://github.com/cypress-io/circleci-orb/issues/308 Probably...
As proved in the thread https://dev.to/dtinth/caching-docker-builds-in-github-actions-which-approach-is-the-fastest-a-research-18ei, GitHub Actions workflows work significantly faster, when a Docker image is pulled from GitHub Packages registry instead of Docker Hub. Is it possible to...
Official Cypress 5.2.0 docker images (`cypress/base`) contains >=1 security vulnerability (Debian)
### Current behavior - The official Cypress docker images (`cypress/base`) contains >=1 security vulnerability (Debian) - As a result, the images created in our CI pipeline (Azure DevOps based), that...
👋 Thanks for these images! Could we please get some node updates for yesterday's security releases? https://nodejs.org/en/blog/vulnerability/september-2020-security-releases/ I'm can look into PRing this myself, but won't be able to until...
Imagine a single docker-compose file that runs unit, API, e2e tests in parallel in separate containers https://twitter.com/AhmadNassri/status/1288844551915020288
I have this simple dockerfile: ``` FROM cypress/included:4.12.1 WORKDIR /usr/cypress/ COPY . . RUN npm i RUN cypress run --browser firefox ``` When running this, it fails to connect to...