chore: drop libpq-dev from Dockerfile (#118) #124

Merged
cal merged 1 commits from issue/118-chore-drop-libpq-dev-from-dockerfile into main 2026-04-10 15:52:50 +00:00
Showing only changes of commit c22e6072a2 - Show all commits

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