12 lines
296 B
Docker
12 lines
296 B
Docker
|
#
|
||
|
# Docker ppc64 cross-compiler target
|
||
|
#
|
||
|
# This docker target builds on the debian Buster base image.
|
||
|
FROM qemu/debian10
|
||
|
|
||
|
RUN apt update && \
|
||
|
DEBIAN_FRONTEND=noninteractive eatmydata \
|
||
|
apt install -y --no-install-recommends \
|
||
|
gcc-powerpc64-linux-gnu \
|
||
|
libc6-dev-ppc64-cross
|