Merge pull request 'chore: drop libpq-dev from Dockerfile (#118)' (#124) from issue/118-chore-drop-libpq-dev-from-dockerfile into main

Reviewed-on: #124
This commit is contained in:
cal 2026-04-10 15:52:48 +00:00
commit 18d7a8a758

View File

@ -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/*