cypress-docker-images icon indicating copy to clipboard operation
cypress-docker-images copied to clipboard

feat(browsers): generate new image with version node14.19.0-chrome103-ff102

Open iam-medvedev opened this issue 3 years ago • 1 comments

Autogenerated by generate-browser-image.js

iam-medvedev avatar Jul 20 '22 14:07 iam-medvedev

CLA assistant check
All committers have signed the CLA.

CLAassistant avatar Jul 20 '22 14:07 CLAassistant

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.

mjhenkes avatar Jan 18 '23 19:01 mjhenkes

Great, thanks! @mjhenkes

iam-medvedev avatar Jan 18 '23 19:01 iam-medvedev