# === Temel Python imajı FROM python:3.10-slim # === Çalışma dizini WORKDIR /app # === Gerekli kütüphaneleri yükle COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # === Hugging Face cache dizinleri ve izinleri RUN mkdir -p /app/.cache && chmod -R 777 /app/.cache ENV HF_HOME=/app/.cache \ HF_DATASETS_CACHE=/app/.cache \ HF_HUB_CACHE=/app/.cache \ TRITON_CACHE_DIR=/tmp/.triton RUN mkdir -p /tmp/.triton && chmod -R 777 /tmp/.triton # === Uygulama dosyaları COPY . . # === Uygulama başlatma CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]