FROM python:3.13-slim

COPY harness-dashboard.py /app/harness-dashboard.py
WORKDIR /app

EXPOSE 3001

CMD ["python3", "harness-dashboard.py"]
