Spaces:
Runtime error
Runtime error
Create Dockerfile
Browse files- Dockerfile +5 -0
Dockerfile
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Monster/Llama-2-13B-chat
|
2 |
+
FROM ghcr.io/ggerganov/llama.cpp:full
|
3 |
+
RUN apt update && apt upgrade -y && apt install wget -y
|
4 |
+
RUN wget "https://huggingface.co/TheBloke/Llama-2-13B-chat-GGUF/resolve/main/llama-2-13b-chat.Q4_K_M.gguf" -O llama-2-13b-chat.Q4_K_M.gguf
|
5 |
+
CMD ["--server", "-m", "llama-2-13b-chat.Q4_K_M.gguf", "--port", "7860", "--host", "0.0.0.0"]
|