## Agents Added - Alateya: R&D, biotech, innovations - Clan (Spirit): Community spirit agent - Eonarch: Consciousness evolution agent ## Changes - docker-compose.node1.yml: Added tokens for all 3 new agents - gateway-bot/http_api.py: Added configs and webhook endpoints - gateway-bot/clan_prompt.txt: New prompt file - gateway-bot/eonarch_prompt.txt: New prompt file ## Fixes - Fixed ROUTER_URL from :9102 to :8000 (internal container port) - All 9 Telegram agents now working ## Documentation - Created PROJECT-MASTER-INDEX.md - single entry point - Added various status documents and scripts Tokens configured: - Helion, NUTRA, Agromatrix (existing) - Alateya, Clan, Eonarch (new) - Druid, GreenFood, DAARWIZZ (configured)
33 lines
866 B
Docker
33 lines
866 B
Docker
# Bot Gateway Dockerfile
|
|
FROM python:3.11-slim
|
|
|
|
LABEL maintainer="DAARION.city Team"
|
|
LABEL description="Bot Gateway - Telegram/Discord webhook handler with DAARWIZZ"
|
|
LABEL version="0.2.0"
|
|
|
|
WORKDIR /app/gateway-bot
|
|
|
|
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install minimal dependencies
|
|
RUN pip install --no-cache-dir \
|
|
fastapi==0.109.0 \
|
|
uvicorn==0.27.0 \
|
|
httpx==0.26.0 \
|
|
pydantic==2.5.3 \
|
|
python-multipart==0.0.6 \
|
|
psycopg2-binary==2.9.9
|
|
|
|
# Copy gateway code and DAARWIZZ prompt
|
|
COPY . .
|
|
|
|
EXPOSE 9300
|
|
|
|
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
|
|
CMD curl -f http://localhost:9300/health || exit 1
|
|
|
|
ENV DAARWIZZ_NAME=DAARWIZZ
|
|
ENV DAARWIZZ_PROMPT_PATH=/app/gateway-bot/daarwizz_prompt.txt
|
|
|
|
CMD ["python", "-m", "uvicorn", "app:app", "--host", "0.0.0.0", "--port", "9300"]
|