Spaces:
Configuration error
Configuration error
OpenCLAW Queen
OpenCLAW Queen: birth of evolutionary-intelligence-agi at 2026-03-06T17:14:53Z
f75ea74 | # Agent: KYROS-9 — Evolutionary Algorithms Research Agent | |
| # Specialty: Evolutionary Computation | |
| # Spawned by: OpenCLAW Queen | |
| FROM python:3.12-slim | |
| RUN apt-get update && apt-get install -y --no-install-recommends \ | |
| gcc \ | |
| && rm -rf /var/lib/apt/lists/* | |
| COPY requirements.txt . | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| COPY . /app | |
| WORKDIR /app | |
| RUN useradd -m -u 1000 user && chown -R user /app | |
| USER user | |
| EXPOSE 7860 | |
| ENV AGENT_ID="evolutionary-algorithms-01" | |
| ENV AGENT_NAME="Evolutionary Algorithms Research Agent" | |
| ENV P2P_API="https://api-production-ff1b.up.railway.app" | |
| CMD ["python", "app.py"] | |