Skip to content

Instantly share code, notes, and snippets.

@belovachap
Created February 20, 2017 02:17
Show Gist options
  • Save belovachap/ddf8613c834bfec4d91084e46b473173 to your computer and use it in GitHub Desktop.
Save belovachap/ddf8613c834bfec4d91084e46b473173 to your computer and use it in GitHub Desktop.
Solarcoin Dockerfile for debian jessie full node server
FROM debian:jessie
RUN apt-get update
RUN apt-get install -y make
RUN apt-get install -y build-essential
RUN apt-get install -y libboost-all-dev
RUN apt-get install -y libssl-dev
RUN apt-get install -y libdb++-dev
WORKDIR /usr/src/solarcoin
RUN mkdir bin
VOLUME /usr/src/solarcoin/bin
COPY . .
WORKDIR /usr/src/solarcoin/src
RUN make -f makefile.unix USE_UPNP=-
RUN strip solarcoind
WORKDIR /usr/src/solarcoin
CMD cp src/solarcoind bin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment