From 6a56577dabcb735b4f356a8bba04ca7af0f0fad9 Mon Sep 17 00:00:00 2001 From: TronoSfera <119615520+TronoSfera@users.noreply.github.com> Date: Mon, 18 May 2026 14:41:22 +0300 Subject: [PATCH] fix(docker): bundle readline runtime so sqlite3 client loads The Alpine sqlite3 binary dynamically links against libreadline.so.8; without it the agent crashes at the validate stage of the pipeline with 'Error loading shared library libreadline.so.8: No such file or directory'. Add the readline package to the runtime stage so sqlite3 starts cleanly. --- apps/agent/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/agent/Dockerfile b/apps/agent/Dockerfile index ec1542c..696995a 100644 --- a/apps/agent/Dockerfile +++ b/apps/agent/Dockerfile @@ -77,6 +77,7 @@ RUN apk add --no-cache \ mariadb-connector-c \ openssl \ sqlite-libs \ + readline \ && addgroup -S backupy -g 1000 \ && adduser -S backupy -G backupy -u 1000