From 2c76e6e4182cddd79ab7b60261bb29344d642e93 Mon Sep 17 00:00:00 2001 From: Will Wang Date: Mon, 5 Jan 2026 13:07:14 -0800 Subject: [PATCH] pin libpq-dev to 16.* --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2b39f572..0c25d6a7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -40,7 +40,7 @@ RUN apt-get update \ liblzma-dev=5.6.* \ libncurses-dev=6.4+20240113-* \ libnss3-dev=2:3.98-* \ - libpq-dev=16.10-* \ + libpq-dev=16.* \ libpsl-dev=0.21.* \ libpython3-dev=3.12.* \ libreadline-dev=8.2-* \ @@ -134,7 +134,7 @@ RUN apt-get update \ "$pyv/bin/pip" install --no-cache-dir --no-compile ruff black mypy pyright isort pytest; \ done \ && rm -rf /root/.cache/pip ~/.cache/pip ~/.cache/pipx - + # Reduce the verbosity of uv - impacts performance of stdout buffering ENV UV_NO_PROGRESS=1