]> git.ipfire.org Git - thirdparty/qemu.git/blob - tests/docker/dockerfiles/debian9.docker
tests/docker: Install tools to cross-debug and build Linux kernels
[thirdparty/qemu.git] / tests / docker / dockerfiles / debian9.docker
1 #
2 # Docker multiarch cross-compiler target
3 #
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.
6 #
7 # On its own you can't build much but the docker-foo-cross targets
8 # build on top of the base debian image.
9 #
10 FROM debian:stretch-slim
11
12 # Duplicate deb line as deb-src
13 RUN cat /etc/apt/sources.list | sed "s/^deb\ /deb-src /" >> /etc/apt/sources.list
14
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 bc \
21 bison \
22 build-essential \
23 ca-certificates \
24 clang \
25 flex \
26 gdb-multiarch \
27 gettext \
28 git \
29 libncurses5-dev \
30 pkg-config \
31 psmisc \
32 python3 \
33 python3-sphinx \
34 texinfo \
35 $(apt-get -s build-dep qemu | egrep ^Inst | fgrep '[all]' | cut -d\ -f2)