File size: 520 Bytes
f8d9ecf
 
 
 
 
 
 
 
 
f3618c4
 
f8d9ecf
f3618c4
f8d9ecf
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM python:3.10-slim

# Hugging Face Spaces özel dizinleri
RUN mkdir -p /app /model && chmod -R 777 /app /model
WORKDIR /app

# Sistem bağımlılıkları
RUN apt-get update && apt-get install -y git build-essential cmake

# Python bağımlılıkları (huggingface_hub eklendi!)
RUN pip install --no-cache-dir llama-cpp-python[server] fastapi uvicorn huggingface_hub

# Uygulama dosyasını kopyala
COPY app.py /app/app.py

# FastAPI sunucusunu başlat
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]