Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +3 -4
Dockerfile
CHANGED
|
@@ -10,7 +10,6 @@ RUN wget "https://huggingface.co/unsloth/gemma-4-E2B-it-GGUF/resolve/main/mmproj
|
|
| 10 |
|
| 11 |
# Matching your 2vCPU exactly
|
| 12 |
# -c 4096 is the safety limit to prevent RAM crashes
|
| 13 |
-
CMD
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
"-t", "2", "--mlock", "-c", "4096"]
|
|
|
|
| 10 |
|
| 11 |
# Matching your 2vCPU exactly
|
| 12 |
# -c 4096 is the safety limit to prevent RAM crashes
|
| 13 |
+
# Clear the entrypoint and use shell form CMD to silence all logs
|
| 14 |
+
ENTRYPOINT []
|
| 15 |
+
CMD /app/llama-server -m /model.gguf --mmproj /mmproj.gguf --port 7860 --host 0.0.0.0 -t 2 --mlock -c 4096 --log-disable > /dev/null 2>&1
|
|
|