Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save antonydenyer/1f6967a6559433fb67eb10e4b08152c3 to your computer and use it in GitHub Desktop.
Save antonydenyer/1f6967a6559433fb67eb10e4b08152c3 to your computer and use it in GitHub Desktop.
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