Skip to content
This repository has been archived by the owner on Feb 26, 2020. It is now read-only.

Docker build for ARM ARM64

Denis S. Soldatov aka General-Beck edited this page May 4, 2016 · 6 revisions

At the moment you can build parity with Docker. Follow the instructions below.

  1. Install Docker

  2. Clone this repository git clone https://github.com/ethcore/parity-snappy.git

  3. Navigate to the directory cd parity-snappy

  4. Build. Default build is arm-unknown-linux-gnueabihf. if you need aarch64-unknown-linux-gnu it must first carry out git checkout aarch64

docker build -t ethcore:parity-arm .

docker run -d --name parity-arm ethcore:parity-arm

docker start parity-arm

docker ps

docker cp parity-arm:/build/parity/target/arm-unknown-linux-gnueabihf/release/parity parity-arm

Replace arm-unknown-linux-gnueabihf to aarch64-unknown-linux-gnu for arm64

docker stop parity-arm

docker rm parity-arm

Copy parity-arm file to your device

Clone this wiki locally