oncu / Dockerfile
ciyidogan's picture
Create Dockerfile
f8d9ecf verified
raw
history blame
516 Bytes
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ı
RUN pip install --no-cache-dir llama-cpp-python[server] fastapi uvicorn
# Model dosyasını manuel kopyalayacaksın (Hugging Face panelinden)
COPY app.py /app/app.py
# FastAPI sunucusunu başlat
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]