fix: install libvips to /opt so libs resolve at runtime - #6
Merged
Merged
Conversation
The previous Dockerfile installed to /usr/local, then tried to copy libvips.so.42 to /opt/lib. But ldd couldn't resolve it because /usr/local/lib64 (where AL2023 places it) wasn't in the linker cache. Fix: use --prefix=/opt --libdir=/opt/lib so libvips installs directly where the runtime wrapper expects it. Register /opt/lib with ldconfig before collecting system deps so ldd resolves all transitive libraries.
|
🎉 This PR is included in version 0.2.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
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.
Fixes the
libvips.so.42: cannot open shared object fileerror in CI.Root cause
The Dockerfile installed libvips to
/usr/local(which on AL2023 puts libs in/usr/local/lib64), then tried toldd+ copy them to/opt/lib. Butlddcouldn't resolvelibvips.so.42because/usr/local/lib64wasn't in the dynamic linker cache at that point.Fix
--prefix=/opt --libdir=/opt/libsolibvips.so.42is installed directly where the runtime expects itldconfigwith/opt/libregistered before collecting system deps/opt/lib