Update Dockerfile
Browse files- Dockerfile +4 -1
Dockerfile
CHANGED
@@ -18,10 +18,13 @@ ENV HF_HOME=/app/.cache \
|
|
18 |
# ✅ Pip güncelle
|
19 |
RUN pip install --upgrade pip
|
20 |
|
21 |
-
# ✅ Uyumlu Torch
|
22 |
RUN pip install torch==2.1.2 torchvision --index-url https://download.pytorch.org/whl/cu118
|
23 |
RUN pip install triton
|
24 |
|
|
|
|
|
|
|
25 |
# ✅ Gereksinim dosyalarını yükle
|
26 |
COPY requirements.txt .
|
27 |
RUN pip install -r requirements.txt
|
|
|
18 |
# ✅ Pip güncelle
|
19 |
RUN pip install --upgrade pip
|
20 |
|
21 |
+
# ✅ Uyumlu Torch + pip triton yükle
|
22 |
RUN pip install torch==2.1.2 torchvision --index-url https://download.pytorch.org/whl/cu118
|
23 |
RUN pip install triton
|
24 |
|
25 |
+
# ✅ Unsloth Zoo’yu doğrudan GitHub’dan yükle
|
26 |
+
RUN pip install "unsloth_zoo @ git+https://github.com/unslothai/unsloth-zoo.git"
|
27 |
+
|
28 |
# ✅ Gereksinim dosyalarını yükle
|
29 |
COPY requirements.txt .
|
30 |
RUN pip install -r requirements.txt
|