Skip to content

Commit 10049a5

Browse files
matteiusclaude
andcommitted
Fix .deb build: install sqlite3 CLI package when using system libs
The runtime Dockerfile stage copies /usr/bin/sqlite3 from the builder. When DEB_BUILD=true the custom SQLite build is skipped, so the sqlite3 CLI binary must come from the system sqlite3 package instead. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 72ddb33 commit 10049a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ RUN apt-get update && \
4646
# and libllhttp can be proper package dependencies instead of bundled libraries.
4747
RUN if [ "$DEB_BUILD" = "true" ]; then \
4848
apt-get update && apt-get install -y --no-install-recommends \
49-
libuv1-dev libsqlite3-dev libllhttp-dev && \
49+
libuv1-dev libsqlite3-dev libllhttp-dev sqlite3 && \
5050
rm -rf /var/lib/apt/lists/* && \
5151
ARCH=$(uname -m) && \
5252
case $ARCH in \

0 commit comments

Comments
 (0)