mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-04 17:55:36 +01:00
Merge pull request #7194 from ffranr/fix_dockerfile_comment
docker: correct comment concerning lnd build/install
This commit is contained in:
commit
e9fb8f691f
1 changed files with 2 additions and 1 deletions
|
@ -12,7 +12,7 @@ LABEL maintainer="Olaoluwa Osuntokun <laolu@lightning.engineering>"
|
|||
# queries required to connect to linked containers succeed.
|
||||
ENV GODEBUG netdns=cgo
|
||||
|
||||
# Install dependencies and install/build lnd.
|
||||
# Install dependencies.
|
||||
RUN apk add --no-cache --update alpine-sdk \
|
||||
git \
|
||||
make
|
||||
|
@ -20,6 +20,7 @@ RUN apk add --no-cache --update alpine-sdk \
|
|||
# Copy in the local repository to build from.
|
||||
COPY . /go/src/github.com/lightningnetwork/lnd
|
||||
|
||||
# Install/build lnd.
|
||||
RUN cd /go/src/github.com/lightningnetwork/lnd \
|
||||
&& make \
|
||||
&& make install tags="signrpc walletrpc chainrpc invoicesrpc peersrpc"
|
||||
|
|
Loading…
Add table
Reference in a new issue