Hey, looks like that is might be an library linking issue, the fixdep
tool is looking for /lib/ld-linux-x86-64.so.2
but that should be symlinked to /lib64/ld-linux-x86-64.so.2
, and it’s not. Since it doesn’t find the relevant library, it cannot run. It’s fixed up by having this line somewhere in your Dockerfile
before the build step.
RUN ln -s /lib64/ld-linux-x86-64.so.2 /lib/ld-linux-x86-64.so.2
I’ve tried it out, and the module seems to be building fine with that. The rest of the changes you made seem to be spot on. Hope this will help!
Will be following up with this issue to see what’s up with those libraries.