Ubuntu 16.04 with libraries to build the older crypto coin
Example to build the Popularcoin create build.sh script with following content
git clone https://github.com/Pop-Currency-Foundation/PopularCoin.git
cd PopularCoin/src
make -f makefile.unix USE_UPNP=-
cp popcoind /output
Add the script to Dockerfile
FROM inmean/coin_build_ubuntu:16.04
ADD build.sh /
CMD ["sh", "/build.sh"]
Build container
docker build -t popularcoin_build .
Run container
docker run -t -i -v /home:/output popularcoin_build
Content type
Image
Digest
Size
272.3 MB
Last updated
over 5 years ago
docker pull inmean/coin_build_ubuntu:16.04