build: add postgresql client library libpq5 (#6964)

Add postgresql client library libpq5
This commit is contained in:
Jordan Frazier
2025-03-07 13:44:05 -08:00
committed by GitHub
parent 3a65ff4150
commit c41eaf0071

View File

@ -68,7 +68,11 @@ FROM python:3.12.3-slim AS runtime
RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y curl git \
&& apt-get install -y \
curl \
git \
# Add PostgreSQL client libraries
libpq5 \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& useradd user -u 1000 -g 0 --no-create-home --home-dir /app/data \