FROM python:3.12-slim
RUN mkdir -p /app
COPY bot/. /app
WORKDIR /app
RUN pip install -r requirements.txt
ENTRYPOINT ["python", "-u", "bot.py"]