From 9c6c2a081bbae86db0aead65380453e2363bbf87 Mon Sep 17 00:00:00 2001 From: SergeantPanda Date: Thu, 28 May 2026 14:31:00 -0500 Subject: [PATCH] fix: remove unnecessary libpq-dev dependency from Dockerfile --- docker/DispatcharrBase | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/DispatcharrBase b/docker/DispatcharrBase index 61c460ce..bc2e9b4d 100644 --- a/docker/DispatcharrBase +++ b/docker/DispatcharrBase @@ -21,7 +21,7 @@ RUN apt-get update && apt-get install --no-install-recommends -y \ && apt-get update \ && apt-get install --no-install-recommends -y \ python3.13 python3.13-dev python3.13-venv libpython3.13 \ - libpcre3 libpcre3-dev libpq-dev \ + libpcre3 libpcre3-dev \ build-essential gcc g++ gfortran libopenblas-dev libopenblas0 ninja-build \ && rm -rf /var/lib/apt/lists/* @@ -73,7 +73,7 @@ RUN apt-get update && apt-get install --no-install-recommends -y \ && apt-get update \ && apt-get install --no-install-recommends -y \ python3.13 python3.13-venv libpython3.13 \ - libpcre3 libpq-dev libopenblas0 procps pciutils \ + libpcre3 libopenblas0 procps pciutils \ nginx comskip \ vlc-bin vlc-plugin-base \ && apt-get clean && rm -rf /var/lib/apt/lists/*