diff --git a/Containers/Ubuntu-22/Dockerfile b/Containers/Ubuntu-22/Dockerfile index e9cd6bb2..ba8ef08f 100644 --- a/Containers/Ubuntu-22/Dockerfile +++ b/Containers/Ubuntu-22/Dockerfile @@ -196,7 +196,7 @@ RUN update-alternatives \ FROM build AS test ARG QEMU_URL="https://gitlab.com/qemu-project/qemu.git" -ARG QEMU_BRANCH="v10.0.0" +ARG QEMU_BRANCH="v11.0.0" RUN apt-get update && apt-get install --yes --no-install-recommends \ autoconf \ @@ -212,6 +212,8 @@ RUN apt-get update && apt-get install --yes --no-install-recommends \ libsdl2-dev \ mtools \ ninja-build \ + swtpm \ + swtpm-tools \ tar \ && \ pip3 install distlib && \ diff --git a/Containers/Ubuntu-24/Dockerfile b/Containers/Ubuntu-24/Dockerfile index 11410423..8cdbbefd 100644 --- a/Containers/Ubuntu-24/Dockerfile +++ b/Containers/Ubuntu-24/Dockerfile @@ -198,7 +198,7 @@ RUN update-alternatives \ FROM build AS test ARG QEMU_URL="https://gitlab.com/qemu-project/qemu.git" -ARG QEMU_BRANCH="v10.0.0" +ARG QEMU_BRANCH="v11.0.0" RUN apt-get update && apt-get install --yes --no-install-recommends \ autoconf \ @@ -214,6 +214,8 @@ RUN apt-get update && apt-get install --yes --no-install-recommends \ libsdl2-dev \ mtools \ ninja-build \ + swtpm \ + swtpm-tools \ tar \ && \ git clone "${QEMU_URL}" --branch "${QEMU_BRANCH}" --depth 1 qemu && \