From: Vsevolod Stakhov Date: Wed, 22 Oct 2025 10:58:04 +0000 (+0100) Subject: [Fix] Add missing runtime dependencies to Dockerfile X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d0112469b8c4304ddbd9f2a43a6e80cf53fca101;p=thirdparty%2Frspamd.git [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 --- 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