Merge pull request 'Dockerfile, speed up CI building' (#299) from wowario/wownero:readme into master

Reviewed-on: https://git.wownero.com/wownero/wownero/pulls/299
This commit is contained in:
jwinterm 2020-07-23 05:20:02 +00:00
commit 3d0153dd8e
4 changed files with 194 additions and 119 deletions

View file

@ -116,19 +116,23 @@ Packaging for your favorite distribution would be a welcome contribution!
## Building from Source
* Docker
git clone https://git.wownero.com/wownero/wownero && cd wownero
docker build -t git-wow:master -m 4g .
docker run -it -p 34567:34567 -p 34568:34568 -w /home/wownero/build/release/bin git-wow:master bash
* Arch Linux/Manjaro
sudo pacman -Syu && sudo pacman -S base-devel cmake boost openssl zeromq libpgm unbound libsodium git
git clone https://git.wownero.com/wownero/wownero
cd wownero
git clone https://git.wownero.com/wownero/wownero && cd wownero
make -j2
* Debian/Ubuntu
sudo apt update && sudo apt install build-essential cmake pkg-config libboost-all-dev libssl-dev libzmq3-dev libunbound-dev libsodium-dev libpgm-dev git
git clone https://git.wownero.com/wownero/wownero
cd wownero
git clone https://git.wownero.com/wownero/wownero && cd wownero
make -j2