diff options
author | Felix Lange <fjl@twurst.com> | 2015-03-19 19:17:43 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2015-03-19 19:17:43 +0800 |
commit | e13c6739804604849c7e43d27b073e68fba58191 (patch) | |
tree | b3471931b63210a4d107875dffd6572bcd96239e /Dockerfile | |
parent | 965c9babe336cfa8d5c740d5356acbc5f9ba4a72 (diff) | |
parent | 5f35e6778f10d9e2c6418beff7ed201be80448c4 (diff) | |
download | go-tangerine-e13c6739804604849c7e43d27b073e68fba58191.tar go-tangerine-e13c6739804604849c7e43d27b073e68fba58191.tar.gz go-tangerine-e13c6739804604849c7e43d27b073e68fba58191.tar.bz2 go-tangerine-e13c6739804604849c7e43d27b073e68fba58191.tar.lz go-tangerine-e13c6739804604849c7e43d27b073e68fba58191.tar.xz go-tangerine-e13c6739804604849c7e43d27b073e68fba58191.tar.zst go-tangerine-e13c6739804604849c7e43d27b073e68fba58191.zip |
Merge remote-tracking branch 'ethereum/conversion' into conversion
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Dockerfile b/Dockerfile index b7e23aaab..966614e71 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,12 +26,11 @@ RUN tar -C /usr/local -xzf go*.tar.gz && go version ADD https://api.github.com/repos/ethereum/go-ethereum/git/refs/heads/develop file_does_not_exist ## Fetch and install go-ethereum -RUN go get github.com/tools/godep -RUN go get -d github.com/ethereum/go-ethereum/... +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 godep restore -RUN go install -v ./cmd/ethereum +RUN GOPATH=$GOPATH:$GOPATH/src/github.com/ethereum/go-ethereum/Godeps/_workspace go install -v ./cmd/ethereum ## Run & expose JSON RPC ENTRYPOINT ["ethereum", "-rpc=true", "-rpcport=8545"] |