docker: add git_url build-arg

This commit is contained in:
3np
2022-02-28 20:53:47 +01:00
parent 4d9a05c2f4
commit 7865384e85
3 changed files with 11 additions and 2 deletions

View File

@@ -14,13 +14,14 @@ ENV GODEBUG netdns=cgo
# image to be built from a specified Git state. The default image
# will use the Git tip of master by default.
ARG checkout="master"
ARG git_url="https://github.com/lightningnetwork/lnd"
# Install dependencies and build the binaries.
RUN apk add --no-cache --update alpine-sdk \
git \
make \
gcc \
&& git clone https://github.com/lightningnetwork/lnd /go/src/github.com/lightningnetwork/lnd \
&& git clone $git_url /go/src/github.com/lightningnetwork/lnd \
&& cd /go/src/github.com/lightningnetwork/lnd \
&& git checkout $checkout \
&& make release-install