github.com/murrekatt/go-ethereum@v1.5.8-0.20170123175102-fc52f2c007fb/containers/docker/develop-ubuntu/Dockerfile (about) 1 FROM ubuntu:wily 2 MAINTAINER caktux 3 4 ENV DEBIAN_FRONTEND noninteractive 5 6 RUN apt-get update && \ 7 apt-get upgrade -q -y && \ 8 apt-get dist-upgrade -q -y && \ 9 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 923F6CA9 && \ 10 echo "deb http://ppa.launchpad.net/ethereum/ethereum-dev/ubuntu wily main" | tee -a /etc/apt/sources.list.d/ethereum.list && \ 11 apt-get update && \ 12 apt-get install -q -y geth 13 14 EXPOSE 8545 15 EXPOSE 30303 16 17 ENTRYPOINT ["/usr/bin/geth"]