Skip to content

Commit 8baaa9f

Browse files
authored
Add sqlite3 to Indexer image (#4919)
## Motivation This is useful for debugging, in case we want to go into the pod and see what's going on with the sqlite db. We can't use the debug docker image for this, because sharing the same disk as the main container is trickier to setup. ## Proposal Add `sqlite3` to the image. ## Test Plan CI, this should be pretty harmless, and I've checked that `sqlite3` is possible to be installed there. ## Release Plan - These changes have already been backported to the latest `testnet` branch
1 parent 8d75384 commit 8baaa9f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docker/Dockerfile.indexer

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,8 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
117117
pkg-config \
118118
protobuf-compiler \
119119
clang \
120-
netcat-openbsd
120+
netcat-openbsd \
121+
sqlite3
121122
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
122123
RUN update-ca-certificates
123124

0 commit comments

Comments
 (0)