1#
2# Docker arm64 cross-compiler target
3#
4# This docker target builds on the base debian image.
5#
6FROM qemu:debian
7
8# Add the foreign architecture we want and install dependencies
9RUN dpkg --add-architecture arm64
10RUN apt update
11RUN DEBIAN_FRONTEND=noninteractive eatmydata \
12    apt-get install -y --no-install-recommends \
13        crossbuild-essential-arm64
14RUN DEBIAN_FRONTEND=noninteractive eatmydata \
15    apt-get build-dep -yy -a arm64 qemu
16
17# Specify the cross prefix for this image (see tests/docker/common.rc)
18ENV QEMU_CONFIGURE_OPTS --cross-prefix=aarch64-linux-gnu-
19