Fix Docker build with PostgreSQL dependencies

This commit is contained in:
2025-09-16 15:59:13 -04:00
parent 552addbdb9
commit 5e2a3b1aba
3 changed files with 8 additions and 3 deletions
+3 -1
View File
@@ -5,9 +5,11 @@ ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
PYTHONIOENCODING=utf-8
# Install system dependencies
# Install system dependencies including PostgreSQL client libraries
RUN apt-get update && apt-get install -y \
curl \
libpq-dev \
gcc \
&& rm -rf /var/lib/apt/lists/*
# Create app user and directory
+1 -1
View File
@@ -1 +1 @@
1.5.3
1.5.4
+4 -1
View File
@@ -1,5 +1,8 @@
fastapi==0.104.1
uvicorn[standard]==0.24.0
pydantic==2.5.0
psycopg2-binary==2.9.9
psycopg2-binary==2.9.7
requests==2.31.0
python-multipart==0.0.6
aiofiles==23.2.1
python-dotenv==1.0.0