diff --git a/factory/README.md b/factory/README.md index 00d8b999d7..ffe2f49d72 100644 --- a/factory/README.md +++ b/factory/README.md @@ -66,7 +66,7 @@ Example: `CYPRESS_VERSION='13.11.0'` The version of Chrome to install. If the `ARG` variable is unset or an empty string, Chrome is not installed. The exact version must be used, no wildcards or shorthands are supported. -Example: `CHROME_VERSION='125.0.6422.141-1'` +Example: `CHROME_VERSION='131.0.6778.264-1'` [Chrome versions](https://www.ubuntuupdates.org/package/google_chrome/stable/main/base/google-chrome-stable) @@ -74,7 +74,7 @@ Example: `CHROME_VERSION='125.0.6422.141-1'` The version of Firefox to install. If the `ARG` variable is unset or an empty string, Firefox is not installed. The exact version must be used, no wildcards or shorthands are supported. -Example: `FIREFOX_VERSION='126.0.1'` +Example: `FIREFOX_VERSION='134.0'` [Firefox versions](https://download-installer.cdn.mozilla.net/pub/firefox/releases/) @@ -82,7 +82,7 @@ Example: `FIREFOX_VERSION='126.0.1'` The version of Edge to install. If the `ARG` variable is unset or an empty string, Edge is not installed. The exact version must be used, no wildcards or shorthands are supported. -Example: `EDGE_VERSION='125.0.2535.85-1'` +Example: `EDGE_VERSION='131.0.2903.112-1'` [Edge versions](https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-stable/) @@ -136,9 +136,9 @@ Create a `Dockerfile` with the following content: # Args are defined in the Dockerfile before the FROM command. # Using these args will cause an image to be created with # Node.js (default version from .env file), Chrome, Firefox and Edge. -ARG CHROME_VERSION='125.0.6422.141-1' -ARG EDGE_VERSION='125.0.2535.85-1' -ARG FIREFOX_VERSION='126.0.1' +ARG CHROME_VERSION='131.0.6778.264-1' +ARG EDGE_VERSION='131.0.2903.112-1' +ARG FIREFOX_VERSION='134.0' FROM cypress/factory @@ -173,7 +173,7 @@ RUN npx cypress install Run the Docker commands: ```bash -docker build . --build-arg CHROME_VERSION='125.0.6422.141-1' --build-arg EDGE_VERSION='125.0.2535.85-1' --build-arg FIREFOX_VERSION='126.0.1' -t test +docker build . --build-arg CHROME_VERSION='131.0.6778.264-1' --build-arg EDGE_VERSION='131.0.2903.112-1' --build-arg FIREFOX_VERSION='134.0' -t test docker run -it --rm test npx cypress run -b chrome ``` @@ -222,7 +222,7 @@ Since this example only uses Chrome, removing Edge and Firefox is as simple as n Create a `Dockerfile` with the following content: ```dockerfile -ARG CHROME_VERSION='125.0.6422.141-1' +ARG CHROME_VERSION='131.0.6778.264-1' FROM cypress/factory diff --git a/factory/test-project/argsDefined.Dockerfile b/factory/test-project/argsDefined.Dockerfile index e5f89d0d5a..6a74419a04 100644 --- a/factory/test-project/argsDefined.Dockerfile +++ b/factory/test-project/argsDefined.Dockerfile @@ -1,7 +1,7 @@ # Args are defined in the Dockerfile before the FROM command. -ARG CHROME_VERSION='126.0.6478.114-1' -ARG EDGE_VERSION='126.0.2592.61-1' -ARG FIREFOX_VERSION='128.0' +ARG CHROME_VERSION='131.0.6778.264-1' +ARG EDGE_VERSION='131.0.2903.112-1' +ARG FIREFOX_VERSION='134.0' ARG BASE_TEST_IMAGE='cypress/factory'