FROM python:3.12-slim

WORKDIR /app
COPY caster.py .
COPY data/ data/

EXPOSE 2101

ENTRYPOINT ["python", "caster.py"]
CMD ["--port", "2101"]
