aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-29 21:03:39 +0800
committerobscuren <geffobscura@gmail.com>2015-03-29 21:03:39 +0800
commite1c6c01b4d598f9b7f7ee31326d25903084fc292 (patch)
tree99d7fa0c5b905df134b0b373316e4a08c17b29c7 /Dockerfile
parentb7a0bc70313597ada37cc1a348bbd0d39696ec6e (diff)
parent391d79ef44ad2e76754ef8dfb5e9dfbdd5a69acd (diff)
downloadgo-tangerine-e1c6c01b4d598f9b7f7ee31326d25903084fc292.tar
go-tangerine-e1c6c01b4d598f9b7f7ee31326d25903084fc292.tar.gz
go-tangerine-e1c6c01b4d598f9b7f7ee31326d25903084fc292.tar.bz2
go-tangerine-e1c6c01b4d598f9b7f7ee31326d25903084fc292.tar.lz
go-tangerine-e1c6c01b4d598f9b7f7ee31326d25903084fc292.tar.xz
go-tangerine-e1c6c01b4d598f9b7f7ee31326d25903084fc292.tar.zst
go-tangerine-e1c6c01b4d598f9b7f7ee31326d25903084fc292.zip
Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into develop
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 966614e71..fcd564a34 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -30,10 +30,10 @@ RUN mkdir -p $GOPATH/src/github.com/ethereum/
RUN git clone https://github.com/ethereum/go-ethereum $GOPATH/src/github.com/ethereum/go-ethereum
WORKDIR $GOPATH/src/github.com/ethereum/go-ethereum
RUN git checkout develop
-RUN GOPATH=$GOPATH:$GOPATH/src/github.com/ethereum/go-ethereum/Godeps/_workspace go install -v ./cmd/ethereum
+RUN GOPATH=$GOPATH:$GOPATH/src/github.com/ethereum/go-ethereum/Godeps/_workspace go install -v ./cmd/geth
## Run & expose JSON RPC
-ENTRYPOINT ["ethereum", "-rpc=true", "-rpcport=8545"]
+ENTRYPOINT ["geth", "-rpc=true", "-rpcport=8545"]
EXPOSE 8545