fix: Exclude bundled QEMU binary from base image (#2185)

This commit is contained in:
Kroese
2026-08-24 06:52:38 +02:00
committed by GitHub
parent 3c50cdd981
commit 874c5d5fa3
+2 -2
View File
@@ -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