Skip to content

Commit be2bab9

Browse files
committed
build: add sqlite support to the dev.Dockerfile build
1 parent b6d8ecc commit be2bab9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dev.Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# If you change this please also update GO_VERSION in Makefile (then run
22
# `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
44

55
LABEL maintainer="Olaoluwa Osuntokun <laolu@lightning.engineering>"
66

@@ -19,11 +19,11 @@ COPY . /go/src/github.com/lightningnetwork/lnd
1919

2020
# Install/build lnd.
2121
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"
2424

2525
# Start a new, final image to reduce size.
26-
FROM alpine as final
26+
FROM alpine AS final
2727

2828
# Expose lnd ports (server, rpc).
2929
EXPOSE 9735 10009

0 commit comments

Comments
 (0)