Skip to content

Instantly share code, notes, and snippets.

@wilsonianb
Created October 18, 2016 18:25
Show Gist options
  • Save wilsonianb/57c67bc059d74455de13f9689050d6b1 to your computer and use it in GitHub Desktop.
Save wilsonianb/57c67bc059d74455de13f9689050d6b1 to your computer and use it in GitHub Desktop.
rippled Dockerfile
FROM ubuntu:15.10
RUN apt-get update
RUN apt-get -y install gcc git python-software-properties curl scons ctags pkg-config protobuf-compiler libprotobuf-dev libssl-dev python-software-properties libboost-all-dev nodejs
CMD cd /opt/rippled && scons -j 4 --static
# Add this Dockerfile to your rippled root directory
# Build the Docker image once:
# docker build -t rippled-docker-local .
# Build rippled by mounting your local directory:
# docker run -v <your-path>/rippled:/opt/rippled rippled-docker-local
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment