# | |
# Docker powerpc/ppc64/ppc64le cross-compiler target | |
# | |
# This docker target builds on the debian Bullseye base image. | |
# | |
FROM qemu/debian11 | |
RUN apt update && \ | |
DEBIAN_FRONTEND=noninteractive eatmydata \ | |
apt install -y --no-install-recommends \ | |
gcc-powerpc-linux-gnu \ | |
libc6-dev-powerpc-cross \ | |
gcc-10-powerpc64-linux-gnu \ | |
libc6-dev-ppc64-cross \ | |
gcc-10-powerpc64le-linux-gnu \ | |
libc6-dev-ppc64el-cross | |