mirror of
https://github.com/langflow-ai/langflow.git
synced 2026-07-23 17:31:33 +08:00
build: add postgresql client library libpq5 (#6964)
Add postgresql client library libpq5
This commit is contained in:
@ -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 \
|
||||
|
||||
Reference in New Issue
Block a user