File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
# If you change this please also update GO_VERSION in Makefile (then run
2
2
# `make lint` to see where else it needs to be updated as well).
3
- FROM golang:1.23.6-alpine as builder
3
+ FROM golang:1.23.6-alpine AS builder
4
4
5
5
LABEL maintainer="Olaoluwa Osuntokun <laolu@lightning.engineering>"
6
6
@@ -19,11 +19,11 @@ COPY . /go/src/github.com/lightningnetwork/lnd
19
19
20
20
# Install/build lnd.
21
21
RUN cd /go/src/github.com/lightningnetwork/lnd \
22
- && make \
23
- && make install-all tags="signrpc walletrpc chainrpc invoicesrpc peersrpc"
22
+ && make \
23
+ && make install-all tags="signrpc walletrpc chainrpc invoicesrpc peersrpc kvdb_sqlite "
24
24
25
25
# Start a new, final image to reduce size.
26
- FROM alpine as final
26
+ FROM alpine AS final
27
27
28
28
# Expose lnd ports (server, rpc).
29
29
EXPOSE 9735 10009
You can’t perform that action at this time.
0 commit comments