Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
@@ -22,10 +22,10 @@ RUN pip install --upgrade pip
|
|
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
|
26 |
-
RUN pip install
|
27 |
|
28 |
-
# ✅ Gereksinim dosyalarını yükle
|
29 |
COPY requirements.txt .
|
30 |
RUN pip install -r requirements.txt
|
31 |
|
|
|
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’u bağımlılıksız, doğrudan ve temiz kur
|
26 |
+
RUN pip install --upgrade --force-reinstall --no-deps --no-cache-dir unsloth unsloth_zoo
|
27 |
|
28 |
+
# ✅ Gereksinim dosyalarını yükle (diğer bağımlılıklar)
|
29 |
COPY requirements.txt .
|
30 |
RUN pip install -r requirements.txt
|
31 |
|