aboutsummaryrefslogtreecommitdiff
path: root/tests/docker/dockerfiles/debian-ppc64-cross.docker
blob: 7f239c322d0d4fd459b26a67ed49ad5f2f83d1a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
#
# Docker ppc64 cross-compiler target
#
# This docker target builds on the debian sid base image which
# contains cross compilers for Debian "ports" targets.
FROM qemu:debian-sid

RUN DEBIAN_FRONTEND=noninteractive eatmydata \
    apt-get install -y --no-install-recommends \
       gcc-powerpc64-linux-gnu \
       libc6-dev-ppc64-cross || { echo "Failed to build - see debian-sid.docker notes"; exit 1; }