d6db2a1cdf
We can't build QEMU with this but we can use this image to build newer arm64 testcases which need more up to date tools. Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
16 lines
458 B
Docker
16 lines
458 B
Docker
#
|
|
# Docker arm64 cross-compiler target
|
|
#
|
|
# This docker target builds on the Debian's Buster base image. There
|
|
# are no QEMU pre-requistes so this image can only be used to build
|
|
# test cases.
|
|
#
|
|
FROM qemu:debian10
|
|
|
|
# Add the foreign architecture we want and install dependencies
|
|
RUN dpkg --add-architecture arm64
|
|
RUN apt update
|
|
RUN DEBIAN_FRONTEND=noninteractive eatmydata \
|
|
apt-get install -y --no-install-recommends \
|
|
crossbuild-essential-arm64
|