diff options
author | caktux <caktux@gmail.com> | 2016-01-22 17:03:41 +0800 |
---|---|---|
committer | caktux <caktux@gmail.com> | 2016-01-22 17:03:41 +0800 |
commit | 896c134d309051bfc5dfd8ac99aca0bbacb946dd (patch) | |
tree | 45dab02cfd5fc9371afa778a9f2f7cb2a88ae9f7 /docker/Dockerfile | |
parent | 78f196409552466ff878a030e4069495a923c73e (diff) | |
download | dexon-896c134d309051bfc5dfd8ac99aca0bbacb946dd.tar dexon-896c134d309051bfc5dfd8ac99aca0bbacb946dd.tar.gz dexon-896c134d309051bfc5dfd8ac99aca0bbacb946dd.tar.bz2 dexon-896c134d309051bfc5dfd8ac99aca0bbacb946dd.tar.lz dexon-896c134d309051bfc5dfd8ac99aca0bbacb946dd.tar.xz dexon-896c134d309051bfc5dfd8ac99aca0bbacb946dd.tar.zst dexon-896c134d309051bfc5dfd8ac99aca0bbacb946dd.zip |
separate and optimize Dockerfile for master and develop
Diffstat (limited to 'docker/Dockerfile')
-rw-r--r-- | docker/Dockerfile | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile deleted file mode 100644 index ba5b05d14..000000000 --- a/docker/Dockerfile +++ /dev/null @@ -1,21 +0,0 @@ -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"] |