silesiacoin/ssc20-client

By silesiacoin

Updated about 4 years ago

Image

193

FROM ubuntu:18.04

RUN apt update -y && apt install -y openjdk-11-jre-headless

# Geth catalyst commit
# 67100e4ac7778c573e3ae57099426787e3e1bea5
# from repo
# git@github.com:mkalinin/go-ethereum.git
#RUN wget https://swarm-gateways.net/bzz:/a1f6a3ba9e328eea66768cffc6d3045d21b2256aae961bda5395467c48b0690a/geth&& chmod +x ./geth
COPY ./go-ethereum/build/bin/geth ./geth
RUN chmod +x ./geth

# Teku phase1 commit
# d7fec811ab1843fcb900d622389d64dcf414f3b3
# from repo
# ssh://git@github.com/txrx-research/teku.git

#RUN wget https://swarm-gateways.net/bzz:/ebbd7b38e7c1deb152af4a8978559c339d6962ecd2bd886c224aa7ca3283d18d/teku && chmod +x ./teku
COPY ./teku/build/install/teku/ ./teku
RUN chmod +x ./teku/bin/teku

Docker Pull Command

docker pull silesiacoin/ssc20-client