I’m trying to dockerize an existing java app that I don’t have the source code for (first issue in trying to troubleshoot).
I’m getting a SEVERE: Caused by: java.lang.UnsatisfiedLinkError: /home/developer/frontline/java-lin64/lib/amd64/libsplashscreen.so: libX11.so.6: cannot open shared object file: No such file or directory
Well The libX11.so.6 files does exist in the container (used entrypoint option to get a shell in container to troubleshoot)
I added the path to the libX11.so.6 to both LD_LIBRARY_PATH (running on linux/centos) and added to java command -Djava.library.path=“path to so”
So I’m stumped now as to the issue. Any thoughts?