If anyone still faces the same issue, for golang-sdk-x64-linux-4.5.2.0.tbz2 which I am using now, I managed to to fix my multi-stage Dockerfile as follows: # stage 2 - build deployment # libappdynamics.so required version of glibc shared libraries are not found in alpine, therefore follow development environment, use ubuntu FROM ubuntu:18.04 RUN apt-get update \ && apt-get install -y wget \ && rm -rf /var/lib/apt/lists/* RUN GRPC_HEALTH_PROBE_VERSION=v0.2.0 && \ wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-amd64 && \ chmod +x /bin/grpc_health_probe ... ... ENTRYPOINT ["/<yourExecutable>"]
... View more