Created
June 12, 2019 12:38
-
-
Save antonydenyer/1f6967a6559433fb67eb10e4b08152c3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:bionic | |
RUN apt-get update && \ | |
apt-get -y -qq upgrade && \ | |
apt-get -y -qq install software-properties-common && \ | |
add-apt-repository ppa:ethereum/ethereum && \ | |
apt-get update && \ | |
apt-get -y -qq install geth-unstable solc && \ | |
apt-get clean && \ | |
rm -rf /var/lib/apt/lists/* | |
EXPOSE 8545 | |
ENTRYPOINT ["geth --rinkeby --rpcapi personal,db,eth,net,web3,admin --rpc --rpcaddr 0.0.0.0 --rpcvhosts '*' --datadir /mnt/data"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment