Skip to content

Commit

Permalink
Merge pull request #301 from jtesta/Dockerfile_arm_fix
Browse files Browse the repository at this point in the history
Fix Docker build for non-x86_64 architectures
  • Loading branch information
rbsec authored Dec 10, 2023
2 parents 6b6140d + 8030749 commit f9bd534
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,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 /lib/ld-musl-x86_64.so.1 /lib/ld-musl-x86_64.so.1
COPY --from=builder /lib/ld-musl-*.so.1 /lib/

# Drop root privileges.
USER 65535:65535
Expand Down

0 comments on commit f9bd534

Please sign in to comment.