# Service arbitrage CEX (dry-run) — autonome, sans Claude.
FROM python:3.11-slim

WORKDIR /app
COPY arbitrage/requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY arbitrage/ /app/

CMD ["python", "cex_arb.py"]
