Fix psycopg install

This commit is contained in:
Sascha Ißbrücker
2025-08-23 10:50:10 +02:00
parent 004319adae
commit e45e63bfb1
4 changed files with 28 additions and 5 deletions

View File

@@ -25,7 +25,7 @@ ADD https://astral.sh/uv/0.8.13/install.sh /uv-installer.sh
RUN chmod +x /uv-installer.sh && /uv-installer.sh
# install python dependencies
COPY pyproject.toml uv.lock ./
RUN /root/.local/bin/uv sync --no-dev
RUN /root/.local/bin/uv sync --no-dev --group postgres
FROM build-deps AS compile-icu