FROM python:3.10-slim # Install dependencies RUN apt-get update && apt-get install -y ffmpeg libsm6 libxext6 libgl1 # Copy project files WORKDIR /app COPY . . # Install Python dependencies RUN pip install --no-cache-dir -r requirements.txt # Run the bot CMD ["python", "app.py"]