CoolFace
Apppublic

Haindomdom99/Ruler-Comp-AI

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
Dockerfile25 linesDownload Raw Back to root
1FROM python:3.10-slim2 3WORKDIR /code4 5# Gerekli sistem paketleri ve SES MOTORU (ffmpeg) eklendi!6RUN apt-get update && apt-get install -y \7    libgl1 \8    libglib2.0-0 \9    ffmpeg \10    && rm -rf /var/lib/apt/lists/*11 12# Gereksinimleri yükle13COPY requirements.txt .14RUN pip install --no-cache-dir --upgrade pip && \15    pip install --no-cache-dir -r requirements.txt16 17# Dosyaları kopyala18COPY . .19 20# Yetkileri ver21RUN chmod -R 777 /code22 23# Uygulamayı başlat24CMD ["python", "app.py"]25