Exploration-maximizing bot that maintains per-cell last-seen tick counters, moves toward the stalest unobserved territory using forward-cone staleness scoring, flees from enemies within extended combat range, and distributes multiple bots across angular zones for maximum map coverage. Archetype: Low Aggression, Low Economy, High Exploration, Low Formation. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
12 lines
130 B
Docker
12 lines
130 B
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY main.py .
|
|
|
|
ENV BOT_PORT=8080
|
|
ENV BOT_SECRET=""
|
|
|
|
EXPOSE 8080
|
|
|
|
CMD ["python3", "main.py"]
|