Spaces:
Sleeping
Sleeping
Create Dockerfile
Browse files- Dockerfile +7 -0
Dockerfile
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM ghcr.io/ggerganov/llama.cpp:full
|
| 2 |
+
|
| 3 |
+
RUN apt update && apt install wget -y
|
| 4 |
+
|
| 5 |
+
RUN wget "https://huggingface.co/ggml-org/gemma-3n-E4B-it-GGUF/resolve/main/gemma-3n-E4B-it-Q8_0.gguf" -O /l.gguf
|
| 6 |
+
|
| 7 |
+
CMD ["--server", "-m", "/l.gguf", "--port", "7860", "--host", "0.0.0.0", "-n", "512"]
|