Skip to content
Closed
Show file tree
Hide file tree
Changes from all 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

- Factory now defaults to setting `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 @@ -142,3 +142,6 @@ ONBUILD RUN apt-get purge -y --auto-remove \
&& rm -rf /var/lib/apt/lists/* \
# Remove cypress install scripts
&& rm -rf /opt/installScripts

# Disable dbus connections
ONBUILD ENV DBUS_SYSTEM_BUS_ADDRESS='disabled:'