test: add gitea pypi index url
All checks were successful
Docker Build (PR) / Build Docker image (pull_request) Successful in 2m3s

This commit is contained in:
2025-11-19 16:03:02 +01:00
parent a7ab44d67b
commit 8ad45cd775

View File

@@ -12,7 +12,9 @@ WORKDIR /app
# Install only runtime dependencies needed for bibapi and requests
# This avoids installing Playwright browsers which are huge
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt && \
RUN pip install --no-cache-dir \
--extra-index-url https://git.theprivateserver.de/api/packages/PHB/pypi/simple/ \
-r requirements.txt && \
# Clean up pip cache
rm -rf /root/.cache/pip