2 # Docker armhf cross-compiler target
4 # This docker target builds on the debian Stretch base image.
8 # Add the foreign architecture we want and install dependencies
9 RUN dpkg --add-architecture armhf
11 RUN DEBIAN_FRONTEND=noninteractive eatmydata \
12 apt-get install -y --no-install-recommends \
13 crossbuild-essential-armhf
14 RUN DEBIAN_FRONTEND=noninteractive eatmydata \
15 apt-get build-dep -yy -a armhf qemu
17 # Specify the cross prefix for this image (see tests/docker/common.rc)
18 ENV QEMU_CONFIGURE_OPTS --cross-prefix=arm-linux-gnueabihf-
20 RUN DEBIAN_FRONTEND=noninteractive eatmydata \
21 apt-get install -y --no-install-recommends \