From 8ad45cd775c6c1a94a1c97fdc1506c0b719d8c4d Mon Sep 17 00:00:00 2001 From: WorldTeacher Date: Wed, 19 Nov 2025 16:03:02 +0100 Subject: [PATCH] test: add gitea pypi index url --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2c9f603..19f8deb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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