ciyidogan commited on
Commit
6c0abc3
·
verified ·
1 Parent(s): 97faa36

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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 sürümü + 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
  # ✅ 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