From 69c1dea51a9b128028f9c82ac7f90cf063e20bf3 Mon Sep 17 00:00:00 2001 From: Paul Spooren Date: Sun, 10 Jan 2021 10:27:58 -1000 Subject: [PATCH] docker,worker: install qemu-utils MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit To convert x86 images to VDI/VMDK the `qemu-img` tools is required, which is part of Debians `qemu-utils` package. The goal is to remove the ancient in-tree `qemu-img` version and replace it with a recent host installed package. Related: https://github.com/openwrt/openwrt/pull/3739/ Signed-off-by: Paul Spooren [rebased] Signed-off-by: Petr Å tetiar --- docker/buildslave/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/buildslave/Dockerfile b/docker/buildslave/Dockerfile index 34d4ea1..c51b5d2 100644 --- a/docker/buildslave/Dockerfile +++ b/docker/buildslave/Dockerfile @@ -28,6 +28,7 @@ RUN \ pwgen \ python3 \ python3-pip \ + qemu-utils \ unzip \ wget && \ apt-get clean && \ -- 2.30.2