From 39047d7d8bac443a3f1d3775be147de4b763e7da Mon Sep 17 00:00:00 2001 From: caktux Date: Wed, 22 Apr 2015 11:38:54 -0400 Subject: refactor Dockerfile --- docker/Dockerfile | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 docker/Dockerfile (limited to 'docker/Dockerfile') diff --git a/docker/Dockerfile b/docker/Dockerfile new file mode 100644 index 000000000..b608e4ab6 --- /dev/null +++ b/docker/Dockerfile @@ -0,0 +1,31 @@ +FROM ubuntu:utopic +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 + +# Let our containers upgrade themselves +RUN apt-get install -q -y unattended-upgrades + +# 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 + +# Install supervisor +RUN apt-get install -q -y supervisor + +# Add supervisor configs +ADD supervisord.conf supervisord.conf + +EXPOSE 8545 +EXPOSE 30303 + +CMD ["-n", "-c", "/supervisord.conf"] +ENTRYPOINT ["/usr/bin/supervisord"] -- cgit v1.2.3