Created
February 1, 2018 13:24
-
-
Save jsyeo/8b023ae1dabd982aaf4a6c395c894807 to your computer and use it in GitHub Desktop.
Building spectrecoin wallet in a docker container
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:artful | |
RUN apt update | |
RUN apt install -y build-essential libssl1.0-dev libevent-dev libseccomp-dev libcap-dev libboost-all-dev pkg-config git autoconf | |
RUN git clone --recursive https://github.com/XSPECOfficial/spectre | |
WORKDIR /spectre | |
RUN bash ./autogen.sh | |
RUN bash ./configure | |
RUN make -j2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment