diff options
| author | Paul Spooren | 2021-01-10 20:27:58 +0000 |
|---|---|---|
| committer | Petr Štetiar | 2021-03-02 11:47:11 +0000 |
| commit | 69c1dea51a9b128028f9c82ac7f90cf063e20bf3 (patch) | |
| tree | 02ecf4753344044c1cdebf30ae386d82ca4cf33f | |
| parent | 2251131545e472c142436c96f7bebdf3140ec6b9 (diff) | |
| download | buildbot-69c1dea51a9b128028f9c82ac7f90cf063e20bf3.tar.gz | |
docker,worker: install qemu-utils
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 <mail@aparcar.org>
[rebased]
Signed-off-by: Petr Štetiar <ynezz@true.cz>
| -rw-r--r-- | docker/buildslave/Dockerfile | 1 |
1 files changed, 1 insertions, 0 deletions
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 && \ |