You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
558 B
27 lines
558 B
FROM ubuntu:16.04
|
|
LABEL maintainer="Luke Childs <lukechilds123@gmail.com>"
|
|
|
|
ENV HOME /root
|
|
WORKDIR /root
|
|
|
|
RUN apt-get update
|
|
|
|
RUN apt-get install -y git build-essential cmake sudo libcurl4-openssl-dev curl
|
|
|
|
RUN git clone https://github.com/nanomsg/nanomsg && \
|
|
cd nanomsg && \
|
|
cmake . && \
|
|
make && \
|
|
sudo make install && \
|
|
sudo ldconfig && \
|
|
cd .. && \
|
|
rm -rf nanomsg
|
|
|
|
RUN git clone https://github.com/jl777/SuperNET && \
|
|
cd SuperNET/iguana && \
|
|
git checkout spvdex && \
|
|
./m_mm
|
|
|
|
COPY ./bin /usr/local/bin
|
|
ENTRYPOINT ["init"]
|
|
EXPOSE 7783
|
|
|