ciyidogan commited on
Commit
69deb5f
·
verified ·
1 Parent(s): 0f1e35b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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 Zooyu 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
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