2019-09-07 09:51:53 +03:00
|
|
|
FROM golang:1.13-alpine as builder
|
2018-05-17 04:50:25 +03:00
|
|
|
|
|
|
|
# Force Go to use the cgo based DNS resolver. This is required to ensure DNS
|
|
|
|
# queries required to connect to linked containers succeed.
|
|
|
|
ENV GODEBUG netdns=cgo
|
|
|
|
|
2019-01-21 06:05:08 +03:00
|
|
|
# Pass a tag, branch or a commit using build-arg. This allows a docker
|
|
|
|
# image to be built from a specified Git state. The default image
|
|
|
|
# will use the Git tip of master by default.
|
|
|
|
ARG checkout="master"
|
|
|
|
|
2018-05-17 04:50:25 +03:00
|
|
|
# Install dependencies and build the binaries.
|
2018-12-02 07:53:14 +03:00
|
|
|
RUN apk add --no-cache --update alpine-sdk \
|
2018-05-17 04:50:25 +03:00
|
|
|
git \
|
|
|
|
make \
|
2018-12-02 07:53:14 +03:00
|
|
|
gcc \
|
2018-05-17 04:50:25 +03:00
|
|
|
&& git clone https://github.com/lightningnetwork/lnd /go/src/github.com/lightningnetwork/lnd \
|
|
|
|
&& cd /go/src/github.com/lightningnetwork/lnd \
|
2019-01-21 06:05:08 +03:00
|
|
|
&& git checkout $checkout \
|
2018-05-17 04:50:25 +03:00
|
|
|
&& make \
|
2020-03-30 11:53:49 +03:00
|
|
|
&& make install tags="signrpc walletrpc chainrpc invoicesrpc"
|
2018-05-17 04:50:25 +03:00
|
|
|
|
|
|
|
# Start a new, final image.
|
|
|
|
FROM alpine as final
|
|
|
|
|
|
|
|
# Define a root volume for data persistence.
|
|
|
|
VOLUME /root/.lnd
|
|
|
|
|
2020-05-07 14:28:12 +03:00
|
|
|
# Add bash, jq and ca-certs, for quality of life and SSL-related reasons.
|
2018-05-17 04:50:25 +03:00
|
|
|
RUN apk --no-cache add \
|
|
|
|
bash \
|
2020-05-07 14:28:12 +03:00
|
|
|
jq \
|
2018-05-17 04:50:25 +03:00
|
|
|
ca-certificates
|
|
|
|
|
|
|
|
# Copy the binaries from the builder image.
|
|
|
|
COPY --from=builder /go/bin/lncli /bin/
|
|
|
|
COPY --from=builder /go/bin/lnd /bin/
|
|
|
|
|
2018-11-14 16:12:20 +03:00
|
|
|
# Expose lnd ports (p2p, rpc).
|
|
|
|
EXPOSE 9735 10009
|
|
|
|
|
2018-05-17 04:50:25 +03:00
|
|
|
# Specify the start command and entrypoint as the lnd daemon.
|
|
|
|
ENTRYPOINT ["lnd"]
|