From 26c12b1d4c94694b354f2a0feee49e0a3b80d2e8 Mon Sep 17 00:00:00 2001 From: Hiroshi Hatake Date: Thu, 23 Jan 2025 15:52:32 +0900 Subject: [PATCH] dockerfile: Fix library dependencies Signed-off-by: Hiroshi Hatake --- dockerfiles/Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 48e2695d0e6..063ae5b43e3 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -113,6 +113,9 @@ RUN echo "deb http://deb.debian.org/debian bookworm-backports main" >> /etc/apt/ apt-get download \ libssl3 \ libcurl4 \ + libnghttp2-14 \ + librtmp1 \ + libssh2-1 \ libsasl2-2 \ pkg-config \ libpq5 \ @@ -214,6 +217,10 @@ RUN echo "deb http://deb.debian.org/debian bookworm-backports main" >> /etc/apt/ apt-get update && \ apt-get install -y --no-install-recommends \ libssl3 \ + libcurl4 \ + libnghttp2-14 \ + librtmp1 \ + libssh2-1 \ libsasl2-2 \ pkg-config \ libpq5 \