Skip to content
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion factory/.env
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ NODE_VERSION="${FACTORY_DEFAULT_NODE_VERSION}"

# Update the FACTORY_VERSION to deploy cypress/factory if you make changes to
# BASE_IMAGE, FACTORY_DEFAULT_NODE_VERSION, YARN_VERSION, factory.Dockerfile or installScripts
FACTORY_VERSION='6.1.0'
FACTORY_VERSION='6.1.1'

# Chrome versions: https://www.ubuntuupdates.org/package/google_chrome/stable/main/base/google-chrome-stable
# Linux/amd64 only
Expand Down
4 changes: 4 additions & 0 deletions factory/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change log

## 6.1.1

- Set `DBUS_SESSION_BUS_ADDRESS` to `disabled:`, which prevents Electron from attempting to connect to dbus. Addressed in [#1415](https://github.com/cypress-io/cypress-docker-images/pull/1415).

## 6.1.0

- Updated Debian `BASE_IMAGE` from `debian:13.0-slim` to `debian:13.1-slim` using [Debian 13.1 (trixie)](https://www.debian.org/releases/trixie/). Addresses [#1412](https://github.com/cypress-io/cypress-docker-images/issues/1412).
Expand Down
3 changes: 3 additions & 0 deletions factory/factory.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ ARG FACTORY_DEFAULT_NODE_VERSION
# Set the default node version to an env to allow us to access it in the onbuild step.
ENV CYPRESS_FACTORY_DEFAULT_NODE_VERSION=${FACTORY_DEFAULT_NODE_VERSION}

# Inform Electron that it will not need to connect to dbus, and should not try
ENV DBUS_SESSION_BUS_ADDRESS='disabled:'

# Install Node: Node MUST be installed, so the default lives here
ONBUILD ARG NODE_VERSION

Expand Down