Created
February 25, 2018 17:48
-
-
Save umegaya/14481867191e4c57ce8580ea8c5bfcaf to your computer and use it in GitHub Desktop.
docker file to make solpb image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:xenial | |
RUN apt-get update && apt-get install -y wget libgmp-dev && \ | |
wget https://s3-ap-southeast-2.amazonaws.com/protobuf-solidity/packages/debian/solpb-0.5.0-linux-x86_64.deb && \ | |
dpkg -i solpb-0.5.0-linux-x86_64.deb && \ | |
rm -rf /var/lib/apt/lists/* | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment