From 612cd6dd4990cf5dc870c4521c98092fd0802636 Mon Sep 17 00:00:00 2001 From: supermaurio <50104281+supermaurio@users.noreply.github.com> Date: Wed, 15 Jan 2025 09:29:20 +0100 Subject: [PATCH] Update Dockerfile libz location changed --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4a70073..de5d0f0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,7 @@ FROM scratch # Copy over the sslscan executable from the intermediate build container, along with the dynamic libraries it is dependent upon (see output of ldd, above). COPY --from=builder /builddir/sslscan /sslscan -COPY --from=builder /lib/libz.so.1 /lib/libz.so.1 +COPY --from=builder /usr/lib/libz.so.1 /lib/libz.so.1 COPY --from=builder /lib/ld-musl-*.so.1 /lib/ # Drop root privileges.