We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8748ab commit cf0892fCopy full SHA for cf0892f
1 file changed
Dockerfile
@@ -3,6 +3,9 @@ FROM python:3.9-slim as builder
3
4
RUN pip install uv
5
6
+# Install psycopg2 system dependencies
7
+RUN apt-get update && apt-get install -y libpq-dev gcc && rm -rf /var/lib/apt/lists/*
8
+
9
# Configure UV for container environment
10
ENV UV_SYSTEM_PYTHON=1 UV_COMPILE_BYTECODE=1
11
0 commit comments