linux-headers: update
[qemu.git] / tests / docker / dockerfiles / debian9.docker
blob8cbd742bb5f408f1816639c45e186c4f4870e76b
2 # Docker multiarch cross-compiler target
4 # This docker target is builds on Debian cross compiler targets to build distro
5 # with a selection of cross compilers for building test binaries.
7 # On its own you can't build much but the docker-foo-cross targets
8 # build on top of the base debian image.
10 FROM debian:stretch-slim
12 # Duplicate deb line as deb-src
13 RUN cat /etc/apt/sources.list | sed "s/^deb\ /deb-src /" >> /etc/apt/sources.list
15 # Install common build utilities
16 RUN apt update && \
17     DEBIAN_FRONTEND=noninteractive apt install -yy eatmydata && \
18     DEBIAN_FRONTEND=noninteractive eatmydata \
19     apt install -y --no-install-recommends \
20         bison \
21         build-essential \
22         ca-certificates \
23         clang \
24         flex \
25         gettext \
26         git \
27         pkg-config \
28         psmisc \
29         python3 \
30         python3-sphinx \
31         texinfo \
32         $(apt-get -s build-dep qemu | egrep ^Inst | fgrep '[all]' | cut -d\  -f2)