docs/system/gdb.rst: Add some more heading structure
[qemu/ar7.git] / tests / docker / dockerfiles / debian11.docker
blob5adfd62d553c3c35ee872dd1f353a5da482e0009
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 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