Skip to content

cypress-io/cypress-docker-images

Repository files navigation

Cypress Docker Images CircleCI

Cypress Docker images are published to Cypress on Docker Hub.

These images provide all of the required dependencies for running Cypress in Docker.

We build four images: click on the image name to see the available tags and versions. We provide multiple tags for various operating systems and specific browser versions. These allow you to target specific combinations you need.

Image Name Description Monthly pulls
cypress/factory A base image template which can be used with ARGs to create a custom docker image. Docker Pulls
cypress/base All operating system dependencies, no Cypress, and no browsers. Docker Pulls
cypress/browsers All operating system dependencies, no Cypress, and some browsers. Docker Pulls
cypress/included All operating system dependencies, Cypress, and some browsers installed globally. Docker Pulls

Tag Selection

If no tag is specified, for example cypress/included, then the tag latest is used by default: cypress/included:latest. It is however recommended to use a specific image tag to avoid breaking changes when new images are released, especially when they include new major versions of Node.js or Cypress.

Some examples with specific tags including an explanation of the tag meanings are:

Once an image with a specific version tag (except latest) has been published to Cypress on Docker Hub it is frozen. This prevents accidental changes.

When a new version is published, an image copy with the latest tag is also published. This means that the Docker image selected using the latest tag (or selected by default if no tag is specified) will also change over time. Specify an explicit version, for example cypress/base:18.16.0, to access instead a frozen version.

Usage

📍Cypress Docker images are offered as a convenience measure. The goal is to offer Node.js, Browser and Cypress versions to streamline running tests in CI or other non-public, sandboxed environments.

Some preparations and optimizations are not included. For example, given the near infinite permutations, images are not monitored for security vulnerabilities. Additionally, once images are published they are considered immutable and cannot be patched. That means (hypothetically) older images could become more vulnerable over time.

This means they should not be used for production deployment and security scans should be performed as-needed by users of these images.

Docker Hub

All of the images and tags are published to Cypress on Docker Hub under:

Cypress/Factory

Don't see the exact combination of Cypress, Node.js and browser versions you need for your test environment? Checkout our cypress/factory. You can use it to generate a custom image to fit your needs.

Examples

Check out the README document in the included directory for examples of how to use cypress/included images. (As described above, these images include all operating system dependencies, Cypress, and some browsers installed globally.)

Known problems

Firefox not found

Problem

When running in GitHub Actions using a cypress/browsers or cypress/included image and testing against the Mozilla Firefox browser with the default root user, Cypress may fail to detect an installed Firefox browser. Instead Cypress shows the following error message:

Browser: firefox was not found on your system or is not supported by Cypress. Can't run because you've entered an invalid browser name.

The GitHub Actions Runner creates the /github/home directory with non-root ownership 1001 (runner) and sets the environment variable HOME to point to this directory. Firefox will not run with these settings. If the command firefox --version is executed, Firefox explains the restriction:

Running Firefox as root in a regular user's session is not supported. ($HOME is /github/home which is owned by uid 1001.)

See Cypress issue #27121.

Resolution

To allow Firefox to run in GitHub Actions in a Docker container, add options: --user 1001 to the workflow to match GitHub Actions' runner user.

    container:
      image: cypress/browsers
      options: --user 1001

See Tag Selection above for advice on selecting a non-default image tag.

Contributing

See CONTRIBUTING.md

License

See LICENSE