2021-02-26 15:52:40 +01:00
|
|
|
FROM debian:stable
|
|
|
|
|
|
|
|
RUN dpkg --add-architecture i386
|
|
|
|
RUN dpkg --add-architecture s390x
|
|
|
|
RUN apt-get update
|
|
|
|
|
|
|
|
# dkpg-dev: to make pkg-config work in cross-builds
|
|
|
|
RUN apt-get install --no-install-recommends --no-upgrade -y \
|
2021-03-01 23:50:54 +01:00
|
|
|
git ca-certificates \
|
2021-02-26 15:52:40 +01:00
|
|
|
make automake libtool pkg-config dpkg-dev valgrind qemu-user \
|
2020-10-11 16:04:58 -07:00
|
|
|
gcc clang libc6-dbg \
|
|
|
|
gcc-i686-linux-gnu libc6-dev-i386-cross libc6-dbg:i386 \
|
2021-02-26 15:52:40 +01:00
|
|
|
gcc-s390x-linux-gnu libc6-dev-s390x-cross libc6-dbg:s390x
|