Skip to content

Instantly share code, notes, and snippets.

@jsyeo
Created February 1, 2018 13:24
Show Gist options
  • Save jsyeo/8b023ae1dabd982aaf4a6c395c894807 to your computer and use it in GitHub Desktop.
Save jsyeo/8b023ae1dabd982aaf4a6c395c894807 to your computer and use it in GitHub Desktop.
Building spectrecoin wallet in a docker container
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