Retrieving list of dynamically linked libraries from a binary
Using docker to build binaries can cause the docker image to be really large as it includes all the source code, transient build files, linkers, etc. For production it is recommended to us docker multi-stage builds to produce a container that only has the binary and needed libraries to run.…