telegram-ai / Dockerfile
akdNIKY's picture
Upload Dockerfile
b816fcb verified
raw
history blame contribute delete
394 Bytes
FROM python:3.9-slim
# نصب ffmpeg و پیش‌نیازها
RUN apt-get update && apt-get install -y ffmpeg && apt-get clean
# تنظیم دایرکتوری کاری
WORKDIR /app
# کپی فایل‌های پروژه
COPY requirements.txt .
COPY app.py .
# نصب وابستگی‌ها
RUN pip install --no-cache-dir -r requirements.txt
# اجرای برنامه
CMD ["python", "app.py"]