From d0112469b8c4304ddbd9f2a43a6e80cf53fca101 Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Wed, 22 Oct 2025 11:58:04 +0100 Subject: [PATCH] [Fix] Add missing runtime dependencies to Dockerfile Added libsqlite3-0 and libunwind8 which are required by rspamd but were missing from the Docker image, causing runtime errors: libsqlite3.so.0: cannot open shared object file --- test/integration/Dockerfile.local | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/integration/Dockerfile.local b/test/integration/Dockerfile.local index be894c1e61..69978821d4 100644 --- a/test/integration/Dockerfile.local +++ b/test/integration/Dockerfile.local @@ -19,6 +19,8 @@ RUN apt-get update && apt-get install -y \ libfann2 \ libstemmer0d \ libasan8 \ + libsqlite3-0 \ + libunwind8 \ && rm -rf /var/lib/apt/lists/* COPY install /usr -- 2.47.3