tiktok-ai / Dockerfile
Deepmind1's picture
Create Dockerfile
60f223e verified
Raw
History Blame
389 Bytes
FROM python:3.10
# تثبيت أساسيات النظام
RUN apt-get update && apt-get install -y \
git ffmpeg wget curl \
libsm6 libxext6 \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
# تثبيت Gradio فقط للتجربة الأولى
RUN pip install --no-cache-dir gradio==6.14.0
# نسخ المشروع
COPY . .
# تشغيل التطبيق
CMD ["python", "app.py"]