Created
October 18, 2016 18:25
-
-
Save wilsonianb/57c67bc059d74455de13f9689050d6b1 to your computer and use it in GitHub Desktop.
rippled Dockerfile
This file contains 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: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