From c41eaf00719b6f7c0c3edfbf9e1a0baf632fd39c Mon Sep 17 00:00:00 2001 From: Jordan Frazier <122494242+jordanrfrazier@users.noreply.github.com> Date: Fri, 7 Mar 2025 13:44:05 -0800 Subject: [PATCH] build: add postgresql client library libpq5 (#6964) Add postgresql client library libpq5 --- docker/build_and_push_ep.Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docker/build_and_push_ep.Dockerfile b/docker/build_and_push_ep.Dockerfile index 3473b017a..b4c419104 100644 --- a/docker/build_and_push_ep.Dockerfile +++ b/docker/build_and_push_ep.Dockerfile @@ -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 \