We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b57a68a commit 2066ba0Copy full SHA for 2066ba0
Dockerfile
@@ -354,11 +354,8 @@ RUN --mount=type=cache,target=/root/.cache/pip \
354
pip \
355
"pycparser>=2.21"
356
357
-# fw2tar deps
358
-RUN apt-get update && apt-get install -q -y $(cat /tmp/fw2tar.txt)
359
-
360
-# Install apt dependencies - largely for binwalk, some for penguin
361
-RUN apt-get update && apt-get install -y $(cat /tmp/penguin.txt) && \
+# Install apt dependencies - largely for binwalk, some for penguin, some for fw2tar
+RUN apt-get update && apt-get install -q -y $(cat /tmp/penguin.txt) $(cat /tmp/fw2tar.txt) && \
362
apt install -yy -f /tmp/pandare.deb -f /tmp/glow.deb -f /tmp/gum.deb && \
363
rm -rf /var/lib/apt/lists/* /tmp/*.deb
364
0 commit comments