If anyone is still having this issue for golang-sdk-x64-linux-4.5.2.0 and couldn't get it working from Sebastian's fix above, that is because you still need to add the appdynamics-golang-sdk library on to the shared library folder within Linux. In a brief summary, in Linux when an executable is looking for a dynamic library (.so file) the linker tries several directories, including directories on the system search path, which consists of entries in /etc/ld.so.conf plus /lib and /usr/lib. For more information please check this Unix stackexchange reply. The Dockerfile should look as follows: FROM ubuntu:18.04 RUN apt-get update \ && apt-get install -y wget \ && rm -rf /var/lib/apt/lists/* COPY appdynamics/lib /lib ... ... ENTRYPOINT ["/<yourExecutable>"] Hope that helps! 🙂
... View more