Arabic250 commited on
Commit
aae6dcf
·
verified ·
1 Parent(s): 4fae2df

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -16,7 +16,8 @@ RUN python3 -c 'from huggingface_hub import hf_hub_download; \
16
  hf_hub_download(repo_id=repo, filename="mmproj-BF16.gguf", local_dir="/app")'
17
 
18
  # تشغيل خادم llama-server كواجهة API فقط للتطبيقات الخارجية
19
- CMD ["llama-server", \
 
20
  "-m", "/app/gemma-4-E4B-it-UD-Q5_K_XL.gguf", \
21
  "--mmproj", "/app/mmproj-BF16.gguf", \
22
  "--host", "0.0.0.0", \
@@ -26,4 +27,4 @@ CMD ["llama-server", \
26
  "--cache-type-v", "iq4_nl", \
27
  "-c", "8192", \
28
  "-n", "4096", \
29
- "--api-key", "my_secure_password_123"]
 
16
  hf_hub_download(repo_id=repo, filename="mmproj-BF16.gguf", local_dir="/app")'
17
 
18
  # تشغيل خادم llama-server كواجهة API فقط للتطبيقات الخارجية
19
+ # تشغيل خادم llama كواجهة API فقط للتطبيقات الخارجية
20
+ CMD ["--server", \
21
  "-m", "/app/gemma-4-E4B-it-UD-Q5_K_XL.gguf", \
22
  "--mmproj", "/app/mmproj-BF16.gguf", \
23
  "--host", "0.0.0.0", \
 
27
  "--cache-type-v", "iq4_nl", \
28
  "-c", "8192", \
29
  "-n", "4096", \
30
+ "--api-key", "my_secure_password_123"]