FROM python:3.11-slim

WORKDIR /app

# Install dependencies
RUN pip install requests

# Copy application code
COPY . .

# Run the bot
CMD ["python", "bot.py"]
