FROM python:3.13-slim WORKDIR /app COPY requirements.txt ./ RUN pip install -r requirements.txt --no-deps COPY . . CMD [ "python", "bot.py" ]