Docker Compose with 24+ services: - PostgreSQL (PostGIS), Valkey, MinIO, Qdrant - Vault (PKI/TLS), Nginx (Reverse Proxy) - Backend Core API, Consent Service, Billing Service - RAG Service, Embedding Service - Gitea, Woodpecker CI/CD - Night Scheduler, Health Aggregator - Jitsi (Web/XMPP/JVB/Jicofo), Mailpit Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
231 B
Docker
14 lines
231 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
RUN pip install --no-cache-dir fastapi uvicorn httpx
|
|
|
|
COPY health_aggregator.py .
|
|
|
|
ENV PORT=8099
|
|
|
|
EXPOSE ${PORT}
|
|
|
|
CMD ["sh", "-c", "uvicorn health_aggregator:app --host 0.0.0.0 --port ${PORT}"]
|