]> git.ipfire.org Git - thirdparty/rspamd.git/commitdiff
[Fix] Add missing runtime dependencies to Dockerfile
authorVsevolod Stakhov <vsevolod@rspamd.com>
Wed, 22 Oct 2025 10:58:04 +0000 (11:58 +0100)
committerVsevolod Stakhov <vsevolod@rspamd.com>
Wed, 22 Oct 2025 13:10:26 +0000 (14:10 +0100)
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

index be894c1e615e5eb89fa1a23de66725a8f35b5828..69978821d40d365ddd8e862bec8a836dec4b3958 100644 (file)
@@ -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