Conversation
kompl
commented
Jul 29, 2026
|
|
||
| RUN npm install -g corepack@latest && corepack enable | ||
|
|
||
| RUN ln -sf /usr/lib/x86_64-linux-gnu/libaio.so.1t64 /usr/lib/x86_64-linux-gnu/libaio.so.1 |
Contributor
Author
There was a problem hiding this comment.
Oracle Instant Client is linked against libaio.so.1, but the t64 transition in Debian 13 renamed the library to libaio.so.1t64. Without this symlink the dynamic loader cannot find it and Oracle calls fail at startup.
kompl
commented
Jul 29, 2026
kompl
left a comment
Contributor
Author
There was a problem hiding this comment.
Root cause of the translation spec failure.
TimAle
approved these changes
Aug 6, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What changed
Trixie fallout
Debian 13 went through the t64 transition, so some packages were renamed and some disappeared:
libaio1→libaio1t64, plus a symlink forlibaio.so.1— Oracle Instant Client is linked against the old name.libasound2→libasound2t64,libgtk-3-0→libgtk-3-0t64,libayatana-indicator7→libayatana-indicator3-7in the test images.libqt5webkit5-devwas dropped from Debian 13 — removed as dead weight (capybara-webkit is not used in this project).apt-keyno longer exists in trixie — the yarn apt repository was removed along with it, since it was redundant: yarn 4 comes from corepack.apt-get purge cmdtestremoved — the package does not exist in trixie and the purge failed the build.Verified locally
ruby --versioninside it reports 3.4.10, OS is trixie.Left to CI
Test image builds and the test runs.