From 57ab1473887b4eaeac2ec6912e3d738d4839b48a Mon Sep 17 00:00:00 2001 From: caktux Date: Mon, 26 Oct 2015 18:06:19 -0400 Subject: update Dockerfile, remove supervisord and unattended-upgrades --- docker/Dockerfile | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) (limited to 'docker/Dockerfile') diff --git a/docker/Dockerfile b/docker/Dockerfile index b608e4ab6..ba5b05d14 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:utopic +FROM ubuntu:wily MAINTAINER caktux ENV DEBIAN_FRONTEND noninteractive @@ -8,9 +8,6 @@ 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 @@ -18,14 +15,7 @@ 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"] +ENTRYPOINT ["/usr/bin/geth"] -- cgit v1.2.3