From f113629123f868288528f36b6a65d4405230771d Mon Sep 17 00:00:00 2001 From: fgma <30936930+fgma@users.noreply.github.com> Date: Thu, 5 Jan 2023 14:16:11 +0100 Subject: [PATCH] fix workaround for CentOS 7 (#30) * fix workaround for CentOS 7 * fix qt libraries in all library folders --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0e67a8f..819a5b9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ RUN apt-get update && apt-get install --no-install-recommends -y \ # Workaround for systems like CentOS 7 which won't load libQt5Core.so as expected: # see also https://stackoverflow.com/a/68897099/ binutils \ - && find /lib/ -name 'libQt5Core.so.*' -exec strip --remove-section=.note.ABI-tag {} \; \ + && find /lib* /usr/lib* -name 'libQt5Core.so.*' -exec strip --remove-section=.note.ABI-tag {} \; \ && apt-get -y purge binutils \ # End of workaround && apt-get clean \