Bitmessage / PyBitmessage

Reference client for Bitmessage: a P2P encrypted decentralised communication protocol:
https://bitmessage.org/wiki/Main_Page
Other
2.81k stars 578 forks source link

Dockerfile arm architecture #1892

Open PeterSurda opened 2 years ago

PeterSurda commented 2 years ago

The buildscripts/docker/Dockerfile.bionic doesn't work on arm architecture (Apple M1, Raspberry Pi, ...).

PeterSurda commented 2 years ago

Update on how to deal with this:

Intel and AMD

FROM base AS deps-amd64 RUN apt install bla bla

ARM

FROM base AS deps-arm64 RUN apt install bla bla

next stage

FROM deps-$TARGETARCH AS travis RUN blabla