Mobile archetype that never camps. Picks a target region every ~20 turns (random corner, opposite side, or enemy core), migrates all units toward it, briefly engages enemies on arrival, then relocates again. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
11 lines
137 B
Docker
11 lines
137 B
Docker
FROM python:3.13-slim
|
|
|
|
WORKDIR /app
|
|
COPY main.py grid.py .
|
|
|
|
ENV BOT_PORT=8080
|
|
ENV BOT_SECRET=""
|
|
|
|
EXPOSE 8080
|
|
|
|
CMD ["python3", "main.py"]
|