Official Go implementation of the Ethereum protocol
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.
|
|
|
FROM ubuntu:wily
|
|
|
|
MAINTAINER caktux
|
|
|
|
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
|
|
|
|
# Usual update / upgrade
|
|
|
|
RUN apt-get update
|
|
|
|
RUN apt-get upgrade -q -y
|
|
|
|
RUN apt-get dist-upgrade -q -y
|
|
|
|
|
|
|
|
# Install Ethereum
|
|
|
|
RUN apt-get install -q -y software-properties-common
|
|
|
|
RUN add-apt-repository ppa:ethereum/ethereum
|
|
|
|
RUN add-apt-repository ppa:ethereum/ethereum-dev
|
|
|
|
RUN apt-get update
|
|
|
|
RUN apt-get install -q -y geth
|
|
|
|
|
|
|
|
EXPOSE 8545
|
|
|
|
EXPOSE 30303
|
|
|
|
|
|
|
|
ENTRYPOINT ["/usr/bin/geth"]
|