feat: update BASE_IMAGE to debian:13.0-slim (trixie) #1396
Merged
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/factoryto use Debian 13.0 (trixie).In detail, the environment variables in factory/.env that control the default build process, are updated as follows:
BASE_IMAGEdebian:12.11-slimdebian:13.0-slimFACTORY_VERSION5.12.16.0.0FACTORY_DEFAULT_NODE_VERSION22.18.0CHROME_VERSION139.0.7258.66-1139.0.7258.127-1CHROME_FOR_TESTING_VERSION139.0.7258.66EDGE_VERSION138.0.3351.121-1139.0.3405.86-1FIREFOX_VERSION141.0.3Debian library names (t64)
Debian library package names in the installation scripts are not updated to their
t64equivalents. 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).