fix: add web app deps and git to Docker build

- Added fastapi, uvicorn, pydantic, requests to requirements.txt
  (were missing — only CLI deps were present)
- Changed fast-flights entry to git+GitHub URL (v3 not on PyPI)
- Added git to apt-get install in Dockerfile (needed for pip git+ URL)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-27 15:42:11 +01:00
parent 3eed32076b
commit 260f3aa196
2 changed files with 13 additions and 1 deletions

View File

@@ -19,6 +19,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
nginx \
supervisor \
gcc \
git \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app