Skip to content

Instantly share code, notes, and snippets.

@umegaya
Created February 25, 2018 17:48
Show Gist options
  • Save umegaya/14481867191e4c57ce8580ea8c5bfcaf to your computer and use it in GitHub Desktop.
Save umegaya/14481867191e4c57ce8580ea8c5bfcaf to your computer and use it in GitHub Desktop.
docker file to make solpb image
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