lnd.xprv/docker/lnd/Dockerfile

26 lines
743 B
Docker
Raw Normal View History

FROM golang:1.7
MAINTAINER Olaoluwa Osuntokun <laolu@lightning.network>
# Expose lnd ports (server, rpc).
EXPOSE 10011 10009
# 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 glide to manage vendor.
RUN go get -u github.com/Masterminds/glide
# 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
# Instll dependency and install/build lnd.
RUN glide install
RUN go install . ./cmd/...
COPY "docker/lnd/start-lnd.sh" .