From ebf36c763e705bcc019b44484079af6143c03d10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C5=82awomir=20Andreasik?= Date: Wed, 12 Nov 2025 21:47:52 +0100 Subject: [PATCH] Add SPICE support by installing qemu-system-modules-spice This change adds the qemu-system-modules-spice package to enable SPICE protocol support for the Windows VM, which is required for: - GPU passthrough scenarios with proper input device handling - Integration with Looking Glass for low-latency display - Audio device passthrough (microphone and speaker support) The package enables QEMU's -spice option, which was previously unavailable and resulted in errors when users attempted to use it. --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4d07613..e452f7e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,8 @@ RUN set -eu && \ dos2unix \ cabextract \ libxml2-utils \ - libarchive-tools && \ + libarchive-tools \ + qemu-system-modules-spice && \ wget "https://github.com/gershnik/wsdd-native/releases/download/v1.22/wsddn_1.22_${TARGETARCH}.deb" -O /tmp/wsddn.deb -q && \ dpkg -i /tmp/wsddn.deb && \ apt-get clean && \