Update Dockerfile
Browse files- 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 |
-
#
|
| 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
|