aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2014-12-13 00:54:32 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2014-12-13 00:54:32 +0800
commitca7f385294ef2e9bc3ad34ce6653e773072e163d (patch)
tree2e251ae8906bf5ee43da2fbe28b63668ef259afc /Dockerfile
parenta92ccfc5c661d578972cbec44cca7738d9977a7c (diff)
downloadgo-tangerine-ca7f385294ef2e9bc3ad34ce6653e773072e163d.tar
go-tangerine-ca7f385294ef2e9bc3ad34ce6653e773072e163d.tar.gz
go-tangerine-ca7f385294ef2e9bc3ad34ce6653e773072e163d.tar.bz2
go-tangerine-ca7f385294ef2e9bc3ad34ce6653e773072e163d.tar.lz
go-tangerine-ca7f385294ef2e9bc3ad34ce6653e773072e163d.tar.xz
go-tangerine-ca7f385294ef2e9bc3ad34ce6653e773072e163d.tar.zst
go-tangerine-ca7f385294ef2e9bc3ad34ce6653e773072e163d.zip
Fix variable name
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 137b7e6c9..1f37ce892 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -33,7 +33,7 @@ RUN go install -v
RUN go get -v -d github.com/ethereum/go-ethereum/...
WORKDIR $GOPATH/src/github.com/ethereum/go-ethereum
RUN git checkout poc8
-RUN ETH_DEPS=$(go list -f '{{.Imports}} {{.TestImports}} {{.XTestImports}}' github.com/ethereum/go-ethereum/... | sed -e 's/\[//g' | sed -e 's/\]//g' | sed -e 's/C //g'); if [ "$ETH_DEPS" ]; then go get $TEST_DEPS; fi
+RUN ETH_DEPS=$(go list -f '{{.Imports}} {{.TestImports}} {{.XTestImports}}' github.com/ethereum/go-ethereum/... | sed -e 's/\[//g' | sed -e 's/\]//g' | sed -e 's/C //g'); if [ "$ETH_DEPS" ]; then go get $ETH_DEPS; fi
RUN go install -v ./cmd/ethereum
# Run JSON RPC