2018-03-12 19:56:02 +01:00
|
|
|
FROM golang:1.10
|
2016-07-17 02:55:16 +02:00
|
|
|
|
2017-10-31 02:38:31 +01:00
|
|
|
MAINTAINER Olaoluwa Osuntokun <lightning.engineering>
|
2016-07-17 02:55:16 +02:00
|
|
|
|
2017-01-18 00:33:01 +01:00
|
|
|
# Expose lnd ports (server, rpc).
|
2017-08-22 09:40:51 +02:00
|
|
|
EXPOSE 9735 10009
|
2016-08-30 00:17:48 +02: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
|
|
|
|
|
2018-03-04 19:45:55 +01:00
|
|
|
# Install dep to manage vendor.
|
|
|
|
RUN go get -u github.com/golang/dep/cmd/dep
|
2016-08-30 00:17:48 +02:00
|
|
|
|
2017-01-18 00:33:01 +01:00
|
|
|
# Grab and install the latest version of lnd and all related dependencies.
|
|
|
|
RUN git clone https://github.com/lightningnetwork/lnd $GOPATH/src/github.com/lightningnetwork/lnd
|
|
|
|
|
|
|
|
# Make lnd folder default.
|
|
|
|
WORKDIR $GOPATH/src/github.com/lightningnetwork/lnd
|
|
|
|
|
2018-03-04 19:45:55 +01:00
|
|
|
# Install dependencies and install/build lnd.
|
|
|
|
RUN dep ensure
|
2017-01-18 00:33:01 +01:00
|
|
|
RUN go install . ./cmd/...
|
2016-07-17 02:55:16 +02:00
|
|
|
|
2017-01-12 01:12:32 +01:00
|
|
|
COPY "docker/lnd/start-lnd.sh" .
|
2017-01-22 15:44:15 +01:00
|
|
|
RUN chmod +x start-lnd.sh
|