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.
23 lines
520 B
23 lines
520 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/jl777/SuperNET
|
|
|
|
RUN cd SuperNET/iguana && \
|
|
git checkout dev && \
|
|
./m_mm_StaticNanoMsg
|
|
|
|
RUN mv ~/SuperNET/agents/marketmaker /usr/local/bin && \
|
|
mv ~/SuperNET/iguana/exchanges/coins ~/coins && \
|
|
rm -rf ~/SuperNET
|
|
|
|
COPY ./bin /usr/local/bin
|
|
ENTRYPOINT ["init"]
|
|
EXPOSE 7783
|
|
|