docker/btcd: fix comment in docker file w.r.t old roasbeef fork

This commit is contained in:
Olaoluwa Osuntokun 2018-06-04 18:36:39 -07:00
parent 584834aa95
commit 054d449316
No known key found for this signature in database
GPG Key ID: 964EA263DD637C21

@ -7,11 +7,10 @@ RUN apk add --no-cache \
git \ git \
&& go get -u github.com/Masterminds/glide && go get -u github.com/Masterminds/glide
WORKDIR $GOPATH/src/github.com/roasbeef/btcd WORKDIR $GOPATH/src/github.com/btcsuite/btcd
# Grab and install the latest version of roasbeef's fork of btcd and all # Grab and install the latest version of of btcd and all related dependencies.
# related dependencies. RUN git clone https://github.com/btcsuite/btcd . \
RUN git clone https://github.com/roasbeef/btcd . \
&& glide install \ && glide install \
&& go install . ./cmd/... && go install . ./cmd/...