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 \