build: add postgresql client library libpq5 (#6964)
Add postgresql client library libpq5
This commit is contained in:
parent
3a65ff4150
commit
c41eaf0071
1 changed files with 5 additions and 1 deletions
|
|
@ -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 \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue