We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59d9b8e commit 8e2b8d3Copy full SHA for 8e2b8d3
2 files changed
bullseye/rootfs/usr/bin/scanelp
@@ -0,0 +1,6 @@
1
+find $1 -type f -executable -exec scanelf --needed --nobanner --format '%n#p' '{}' ';' \
2
+ | tr ',' '\n' \
3
+ | sort -u \
4
+ | xargs -rt dpkg -S 2>/dev/null \
5
+ | awk -F ": " '{print $1}' \
6
+ | awk '!x[$0]++'
mkimage.sh
@@ -39,6 +39,7 @@ rootfs_chroot apt-get install -y --no-install-recommends \
39
tini \
40
curl \
41
netbase \
42
+ pax-utils \
43
ca-certificates
44
45
# We have our own version of initctl, tell dpkg to not overwrite it.
0 commit comments