aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-02-12 02:22:38 +0800
committerobscuren <geffobscura@gmail.com>2015-02-12 02:22:38 +0800
commit1fc3524e40ced2e780f6b90fa4ca7725c839976f (patch)
tree1d3508d967c9269fd89b0fa2d45313e4c821c170 /Dockerfile
parentdf49c609a0fd055a4f0dac89db6863ad5532228f (diff)
parentebc506dae8a15e5dcce4e4369e21d04e3b8f9aa4 (diff)
downloaddexon-1fc3524e40ced2e780f6b90fa4ca7725c839976f.tar
dexon-1fc3524e40ced2e780f6b90fa4ca7725c839976f.tar.gz
dexon-1fc3524e40ced2e780f6b90fa4ca7725c839976f.tar.bz2
dexon-1fc3524e40ced2e780f6b90fa4ca7725c839976f.tar.lz
dexon-1fc3524e40ced2e780f6b90fa4ca7725c839976f.tar.xz
dexon-1fc3524e40ced2e780f6b90fa4ca7725c839976f.tar.zst
dexon-1fc3524e40ced2e780f6b90fa4ca7725c839976f.zip
Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into develop
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile9
1 files changed, 3 insertions, 6 deletions
diff --git a/Dockerfile b/Dockerfile
index 771d19746..6e29a638d 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -21,13 +21,10 @@ RUN apt-get install -y qt54quickcontrols qt54webengine
## Build and install latest Go
RUN git clone https://go.googlesource.com/go golang
RUN cd golang && git checkout go1.4.1
-RUN cd golang/src && ./all.bash && go version
+RUN cd golang/src && ./make.bash && go version
-## Fetch and install QML
-RUN go get -u -v -d github.com/obscuren/qml
-WORKDIR $GOPATH/src/github.com/obscuren/qml
-RUN git checkout v1
-RUN go install -v
+# this is a workaround, to make sure that docker's cache is invalidated whenever the git repo changes
+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 -u -v -d github.com/ethereum/go-ethereum/...