diff options
author | Alex Bennée | 2021-01-14 17:57:26 +0100 |
---|---|---|
committer | Alex Bennée | 2021-01-18 11:04:31 +0100 |
commit | ec9d7c38ec59bb7c188ec287c6b88da1bbd62f92 (patch) | |
tree | a224e4982fde5279087991ab385a8e1374ce5e32 /tests/docker | |
parent | Makefile: wrap cscope in quiet-command calls (diff) | |
download | qemu-ec9d7c38ec59bb7c188ec287c6b88da1bbd62f92.tar.gz qemu-ec9d7c38ec59bb7c188ec287c6b88da1bbd62f92.tar.xz qemu-ec9d7c38ec59bb7c188ec287c6b88da1bbd62f92.zip |
docker: expand debian-amd64 image to include tag tools
This is going to be helpful when we want to both test the tool
integration and in the case of global generate a xref doc build.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Willian Rampazzo <willianr@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20210114165730.31607-9-alex.bennee@linaro.org>
Diffstat (limited to 'tests/docker')
-rw-r--r-- | tests/docker/dockerfiles/debian-amd64.docker | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/docker/dockerfiles/debian-amd64.docker b/tests/docker/dockerfiles/debian-amd64.docker index 55075d9fce..a98314757d 100644 --- a/tests/docker/dockerfiles/debian-amd64.docker +++ b/tests/docker/dockerfiles/debian-amd64.docker @@ -1,7 +1,7 @@ # # Docker x86_64 target # -# This docker target builds on the debian Stretch base image. Further +# This docker target builds on the Debian Buster base image. Further # libraries which are not widely available are installed by hand. # FROM qemu/debian10 @@ -14,7 +14,10 @@ RUN apt update && \ RUN apt update && \ DEBIAN_FRONTEND=noninteractive eatmydata \ apt install -y --no-install-recommends \ + cscope \ genisoimage \ + exuberant-ctags \ + global \ libbz2-dev \ liblzo2-dev \ libgcrypt20-dev \ |