Merge pull request #3250 from OpinionatedGeek/master

Docker builds don't work with Loop
This commit is contained in:
Olaoluwa Osuntokun 2019-06-27 16:58:54 -07:00 committed by GitHub
commit f12159c756
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

@ -12,7 +12,7 @@ RUN apk add --no-cache --update alpine-sdk \
&& git clone https://github.com/lightningnetwork/lnd /go/src/github.com/lightningnetwork/lnd \
&& cd /go/src/github.com/lightningnetwork/lnd \
&& make \
&& make install tags="signrpc walletrpc chainrpc invoicesrpc"
&& make install tags="signrpc walletrpc chainrpc invoicesrpc routerrpc"
# Start a new, final image.
FROM alpine as final

@ -15,7 +15,7 @@ RUN apk add --no-cache --update alpine-sdk \
make \
&& cd /go/src/github.com/lightningnetwork/lnd \
&& make \
&& make install tags="signrpc walletrpc chainrpc invoicesrpc"
&& make install tags="signrpc walletrpc chainrpc invoicesrpc routerrpc"
# Start a new, final image to reduce size.
FROM alpine as final