dev #16

Merged
WorldTeacher merged 5 commits from dev into main 2025-11-19 15:08:28 +00:00
Showing only changes of commit 8ad45cd775 - Show all commits

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