7d31467973
Now that the official releases are built with subservers, can/should we build docker images with subservers by default too? This one-line change is all I needed to do to build LND with subservers so loop would work with the docker image.
37 lines
974 B
Docker
37 lines
974 B
Docker
FROM golang:1.12-alpine as builder
|
|
|
|
MAINTAINER Olaoluwa Osuntokun <lightning.engineering>
|
|
|
|
# Copy in the local repository to build from.
|
|
COPY . /go/src/github.com/lightningnetwork/lnd
|
|
|
|
# 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
|
|
|
|
# Install dependencies and install/build lnd.
|
|
RUN apk add --no-cache --update alpine-sdk \
|
|
git \
|
|
make \
|
|
&& cd /go/src/github.com/lightningnetwork/lnd \
|
|
&& make \
|
|
&& make install tags="signrpc walletrpc chainrpc invoicesrpc"
|
|
|
|
# Start a new, final image to reduce size.
|
|
FROM alpine as final
|
|
|
|
# Expose lnd ports (server, rpc).
|
|
EXPOSE 9735 10009
|
|
|
|
# Copy the binaries and entrypoint from the builder image.
|
|
COPY --from=builder /go/bin/lncli /bin/
|
|
COPY --from=builder /go/bin/lnd /bin/
|
|
|
|
# Add bash.
|
|
RUN apk add --no-cache \
|
|
bash
|
|
|
|
# Copy the entrypoint script.
|
|
COPY "docker/lnd/start-lnd.sh" .
|
|
RUN chmod +x start-lnd.sh
|