ciyidogan commited on
Commit
f3618c4
·
verified ·
1 Parent(s): 46691cd

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -7,10 +7,10 @@ WORKDIR /app
7
  # Sistem bağımlılıkları
8
  RUN apt-get update && apt-get install -y git build-essential cmake
9
 
10
- # Python bağımlılıkları
11
- RUN pip install --no-cache-dir llama-cpp-python[server] fastapi uvicorn
12
 
13
- # Model dosyasını manuel kopyalayacaksın (Hugging Face panelinden)
14
  COPY app.py /app/app.py
15
 
16
  # FastAPI sunucusunu başlat
 
7
  # Sistem bağımlılıkları
8
  RUN apt-get update && apt-get install -y git build-essential cmake
9
 
10
+ # Python bağımlılıkları (huggingface_hub eklendi!)
11
+ RUN pip install --no-cache-dir llama-cpp-python[server] fastapi uvicorn huggingface_hub
12
 
13
+ # Uygulama dosyasını kopyala
14
  COPY app.py /app/app.py
15
 
16
  # FastAPI sunucusunu başlat