From 874c5d5fa34aa457d8322de7a0d8d9dfbce256ed Mon Sep 17 00:00:00 2001 From: Kroese Date: Mon, 24 Aug 2026 06:52:38 +0200 Subject: [PATCH] fix: Exclude bundled QEMU binary from base image (#2185) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a953d25d..dd2463e0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ -# syntax=docker/dockerfile:1 +# syntax=docker/dockerfile:1.19 ARG VERSION_ARG="latest" FROM scratch AS build-amd64 -COPY --from=qemux/qemu:7.49 / / +COPY --from=qemux/qemu:7.49 --exclude=usr/bin/qemu-system-x86_64 / / ARG TARGETARCH