libqtest: Inline g_assert_no_errno()
[qemu/armbru.git] / tests / docker / dockerfiles / debian8.docker
blob52945631cdc842f87c4c845584b71834d2d4130e
2 # Docker multiarch cross-compiler target
4 # This docker target is builds on Debian and Emdebian's cross compiler targets
5 # to build distro 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:jessie-slim
12 MAINTAINER Philippe Mathieu-Daudé <f4bug@amsat.org>
14 # Duplicate deb line as deb-src
15 RUN cat /etc/apt/sources.list | sed "s/^deb\ /deb-src /" >> /etc/apt/sources.list
17 # Setup some basic tools we need
18 RUN apt-get update && \
19     DEBIAN_FRONTEND=noninteractive apt install -yy eatmydata
20 RUN DEBIAN_FRONTEND=noninteractive eatmydata \
21     apt-get install -y --no-install-recommends \
22         bison \
23         binutils-multiarch \
24         build-essential \
25         ca-certificates \
26         clang \
27         curl \
28         flex \
29         gettext \
30         git \
31         gnupg \
32         pkg-config \
33         python-minimal