feat: update BASE_IMAGE to debian:13.0-slim (trixie) #1396
Merged
+12
−8
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Situation
Cypress Docker images built from factory/.env currently use
BASE_IMAGE='debian:12.11-slim'
. Debian 13.0 (trixie), which was released on Aug 9, 2025, supersedes Debian 12.x (bookworm).Corresponding Debian Docker images were made available on Aug 13, 2025.
Change
Update the base image for
cypress/factory
to use Debian 13.0 (trixie).In detail, the environment variables in factory/.env that control the default build process, are updated as follows:
BASE_IMAGE
debian:12.11-slim
debian:13.0-slim
FACTORY_VERSION
5.12.1
6.0.0
FACTORY_DEFAULT_NODE_VERSION
22.18.0
CHROME_VERSION
139.0.7258.66-1
139.0.7258.127-1
CHROME_FOR_TESTING_VERSION
139.0.7258.66
EDGE_VERSION
138.0.3351.121-1
139.0.3405.86-1
FIREFOX_VERSION
141.0.3
Debian library names (t64)
Debian library package names in the installation scripts are not updated to their
t64
equivalents. Debian 13 automatically translates old library package names to new package names, for instanceKeeping the old names means that factory/factory.Dockerfile retains backwards compatibility with Debian 11 (bullseye) and 12 (bookworm), whilst also being usable with Debian 13 (trixie).