All units rush the nearest enemy core via BFS, ignoring enemy units and economy. No perimeter defense — full commitment to core destruction. Targets persist across turns for consistent pathing. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
12 lines
166 B
Docker
12 lines
166 B
Docker
FROM node:22-alpine
|
|
|
|
WORKDIR /app
|
|
COPY package.json .
|
|
COPY index.js strategy.js grid.js .
|
|
|
|
ENV BOT_PORT=8080
|
|
ENV BOT_SECRET=""
|
|
|
|
EXPOSE 8080
|
|
|
|
CMD ["node", "index.js"]
|