We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I recently installed Mercure 0.3.0-beta.2 using docker compose (pulling images on Docker Hub)
0.3.0-beta.2
When receiving the DICOM files, the mercure_receiver_1 container shows the following error
mercure_receiver_1
bin/ubuntu22.04/getdcmtags: error while loading shared libraries: libQt5Core.so.5: cannot open shared object file: No such file or directory
This is somewhat misleading as the shared object does exist. I was able to fix this by running the following command
docker exec --user root mercure-receiver-1 strip --remove-section=.note.ABI-tag /usr/lib/x86_64-linux-gnu/libQt5Core.so.5
Here's a detailed description of the issue
https://askubuntu.com/a/1163268
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I recently installed Mercure
0.3.0-beta.2
using docker compose (pulling images on Docker Hub)When receiving the DICOM files, the
mercure_receiver_1
container shows the following errorbin/ubuntu22.04/getdcmtags: error while loading shared libraries: libQt5Core.so.5: cannot open shared object file: No such file or directory
This is somewhat misleading as the shared object does exist. I was able to fix this by running the following command
docker exec --user root mercure-receiver-1 strip --remove-section=.note.ABI-tag /usr/lib/x86_64-linux-gnu/libQt5Core.so.5
Here's a detailed description of the issue
https://askubuntu.com/a/1163268
The text was updated successfully, but these errors were encountered: