Spaces:
Runtime error
Runtime error
File size: 283 Bytes
398095a 5e6aea7 398095a 5e6aea7 398095a 5e6aea7 398095a 5e6aea7 398095a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 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"]
|