mirror of
https://github.com/reconurge/flowsint.git
synced 2026-07-15 21:23:01 -05:00
The production stage created the flowsint user and chowned all app files to it, but the USER directive was commented out, so the API ran as root. Uncommented it. Verified: image builds, container reports whoami=flowsint and /health returns 200.
flowsint-api
Installation
- Install Python dependencies:
uv sync
Run
# dev
uv run uvicorn app.main:app --host 0.0.0.0 --port 5001 --reload
# prod
uv run uvicorn app.main:app --host 0.0.0.0 --port 5001