copy symlinked libdl.so.2 instead of specific version
George Masgras committed
Sep 4, 2019 at 11:32 UTC
8f24a12259360ffd87fbcec77c3e627e61a664df
1 file changed
+1
-1
Dockerfile
+1
-1
@@ -53,7 +53,7 @@ COPY --from=0 /etc/ssl/certs /etc/ssl/certs
53
RUN chmod 4755 /usr/local/bin/fusermount
54
55
# This shared lib (part of glibc) doesn't seem to be included with busybox.
56
-COPY --from=0 /lib/x86_64-linux-gnu/libdl-2.24.so /lib/libdl.so.2
56
+COPY --from=0 /lib/x86_64-linux-gnu/libdl.so.2 /lib/libdl.so.2
57
58
# Swarm TCP; should be exposed to the public
59
EXPOSE 4001