aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2014-12-22 04:31:19 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2014-12-22 04:31:19 +0800
commit26bf95731ba7a469e13d996f291795a817cff480 (patch)
tree61318973a697220ddb63b8e67a24d4b3486143c4 /Dockerfile
parent03dc6ec0d42171c1642430baaf8881bb59de3d8f (diff)
downloaddexon-26bf95731ba7a469e13d996f291795a817cff480.tar
dexon-26bf95731ba7a469e13d996f291795a817cff480.tar.gz
dexon-26bf95731ba7a469e13d996f291795a817cff480.tar.bz2
dexon-26bf95731ba7a469e13d996f291795a817cff480.tar.lz
dexon-26bf95731ba7a469e13d996f291795a817cff480.tar.xz
dexon-26bf95731ba7a469e13d996f291795a817cff480.tar.zst
dexon-26bf95731ba7a469e13d996f291795a817cff480.zip
Use repo default branches
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 1f37ce892..82ce9f7fc 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -25,14 +25,14 @@ RUN apt-get install -y qtbase5-private-dev qtdeclarative5-private-dev libqt5open
## Fetch and install serpent-go
RUN go get -v -d github.com/ethereum/serpent-go
WORKDIR $GOPATH/src/github.com/ethereum/serpent-go
-RUN git checkout master
+# RUN git checkout master
RUN git submodule update --init
RUN go install -v
# Fetch and install go-ethereum
RUN go get -v -d github.com/ethereum/go-ethereum/...
WORKDIR $GOPATH/src/github.com/ethereum/go-ethereum
-RUN git checkout poc8
+# RUN git checkout develop
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