mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-04-25 08:01:02 +02:00
git-subtree-dir: src/minisketch git-subtree-split: 89629eb2c7e262b39ba489b93b111760baded4b3
18 lines
647 B
Docker
18 lines
647 B
Docker
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 \
|
|
git ca-certificates \
|
|
make automake libtool pkg-config dpkg-dev valgrind qemu-user \
|
|
gcc g++ clang libc6-dbg \
|
|
gcc-i686-linux-gnu g++-i686-linux-gnu libc6-dev-i386-cross libc6-dbg:i386 \
|
|
g++-s390x-linux-gnu gcc-s390x-linux-gnu libc6-dev-s390x-cross libc6-dbg:s390x \
|
|
wine g++-mingw-w64-x86-64
|
|
|
|
# Run a dummy command in wine to make it set up configuration
|
|
RUN wine true || true
|