From 9809ecd0709f31de09d3cd4cbeb2cffefb29f477 Mon Sep 17 00:00:00 2001 From: Luke Childs Date: Sun, 16 May 2021 16:11:10 +0700 Subject: [PATCH] Strip qemu-img binary --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6fd48d2..4536650 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,7 +32,7 @@ RUN "qemu-${QEMU_VERSION}/configure" --static --target-list=arm-softmmu,aarch64- RUN make -j$(nproc) RUN # Strip the binary, this gives a substantial size reduction! -RUN strip "arm-softmmu/qemu-system-arm" "aarch64-softmmu/qemu-system-aarch64" +RUN strip "arm-softmmu/qemu-system-arm" "aarch64-softmmu/qemu-system-aarch64" "qemu-img" # Build stage for fatcat