File size: 621 Bytes
f75ea74
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# 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"]