From 8f24a12259360ffd87fbcec77c3e627e61a664df Mon Sep 17 00:00:00 2001 From: George Masgras Date: Wed, 4 Sep 2019 11:32:31 -0700 Subject: [PATCH] copy symlinked libdl.so.2 instead of specific version --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7104e28b63d..f331ec43cc3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -53,7 +53,7 @@ COPY --from=0 /etc/ssl/certs /etc/ssl/certs RUN chmod 4755 /usr/local/bin/fusermount # This shared lib (part of glibc) doesn't seem to be included with busybox. -COPY --from=0 /lib/x86_64-linux-gnu/libdl-2.24.so /lib/libdl.so.2 +COPY --from=0 /lib/x86_64-linux-gnu/libdl.so.2 /lib/libdl.so.2 # Swarm TCP; should be exposed to the public EXPOSE 4001