cypress-docker-images
cypress-docker-images copied to clipboard
feat(browsers): generate new image with version node14.19.0-chrome103-ff102
Autogenerated by generate-browser-image.js
Hey @iam-medvedev , with our newly released cypress/factory image, you shouldn't need us to release an image for you!
Normally you'd consume our docker image in a docker file like this:
FROM cypress/browsers:node14.19.0-chrome103-ff102
<whatever steps you want>
With cypress/factory, you can instead add args for the versions you want and consume the factory directly.
ARG NODE_VERSION='14.19.0'
ARG CHROME_VERSION='103.0.5060.134-1'
ARG FIREFOX_VERSION='102.0.1'
FROM cypress/factory:latest
<whatever steps you want>
We've setup the docker image with onbuild steps that read the args and build out the cypress factory image with the specified versions.
Great, thanks! @mjhenkes