0fd8f7a2df
Flatten into a single dockerfile. We really don't need the rest of the stuff from the QEMU base image just to compile test images. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Message-Id: <20220914155950.804707-15-alex.bennee@linaro.org>
20 lines
579 B
Docker
20 lines
579 B
Docker
#
|
|
# Docker powerpc/ppc64/ppc64le cross-compiler target
|
|
#
|
|
# This docker target builds on the Debian Bullseye base image.
|
|
#
|
|
FROM docker.io/library/debian:11-slim
|
|
|
|
RUN export DEBIAN_FRONTEND=noninteractive && \
|
|
apt-get update && \
|
|
apt-get install -y eatmydata && \
|
|
eatmydata apt-get dist-upgrade -y && \
|
|
eatmydata apt-get install --no-install-recommends -y \
|
|
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
|
|
|