From c22e6072a2b94ccab293938641acb8a7e19d0fda Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Thu, 9 Apr 2026 13:31:34 -0500 Subject: [PATCH] chore: drop libpq-dev from Dockerfile (#118) psycopg2-binary bundles its own libpq and does not need libpq-dev at build time. curl is kept for the HEALTHCHECK. Closes #118 Co-Authored-By: Claude Sonnet 4.6 --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1e0ccb5..a35dc6c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,6 @@ WORKDIR /usr/src/app # Install system dependencies (PostgreSQL client libraries) RUN apt-get update && apt-get install -y --no-install-recommends \ - libpq-dev \ curl \ && rm -rf /var/lib/apt/lists/*