Merge remote-tracking branch 'remotes/dgilbert-gitlab/tags/pull-migration-20210726a...
[qemu/armbru.git] / tests / docker / dockerfiles / debian11.docker
blobfebf884f8fde1dc827735cb07d7db72f42b83aeb
2 # Docker multiarch cross-compiler target
4 # This docker target uses the current development version of Debian as
5 # a base for cross compilers for building test binaries. We won't
6 # attempt to build QEMU on it yet given it is still in development.
8 # On its own you can't build much but the docker-foo-cross targets
9 # build on top of the base debian image.
11 FROM docker.io/library/debian:bullseye-slim
13 # Duplicate deb line as deb-src
14 RUN cat /etc/apt/sources.list | sed "s/^deb\ /deb-src /" >> /etc/apt/sources.list
16 # Install common build utilities
17 RUN apt update && \
18     DEBIAN_FRONTEND=noninteractive apt install -yy eatmydata