Spaces:
Paused
Paused
gfjiogopdfgdfs
commited on
Update Dockerfile
Browse files- Dockerfile +14 -0
Dockerfile
CHANGED
@@ -24,6 +24,20 @@ RUN wget -O part_a.gguf https://huggingface.co/NeverSleep/MiquMaid-v2-2x70B-DPO-
|
|
24 |
RUN wget -O part_b.gguf https://huggingface.co/NeverSleep/MiquMaid-v2-2x70B-DPO-GGUF/resolve/main/MiquMaid-v2-2x70B-DPO.Q4_K_M.gguf_part_ab?download=true
|
25 |
RUN cat part_a.gguf part_b.gguf > model.gguf
|
26 |
RUN rm part_a.gguf part_b.gguf
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
|
28 |
EXPOSE 7860
|
29 |
# Should expose on all network interfaces so 0.0.0.0 not only localhost
|
|
|
24 |
RUN wget -O part_b.gguf https://huggingface.co/NeverSleep/MiquMaid-v2-2x70B-DPO-GGUF/resolve/main/MiquMaid-v2-2x70B-DPO.Q4_K_M.gguf_part_ab?download=true
|
25 |
RUN cat part_a.gguf part_b.gguf > model.gguf
|
26 |
RUN rm part_a.gguf part_b.gguf
|
27 |
+
# Download config.json
|
28 |
+
RUN wget -O config.json "https://huggingface.co/NeverSleep/MiquMaid-v2-2x70B-DPO/resolve/main/config.json?download=true"
|
29 |
+
|
30 |
+
# Download special_tokens_map.json
|
31 |
+
RUN wget -O special_tokens_map.json "https://huggingface.co/NeverSleep/MiquMaid-v2-2x70B-DPO/resolve/main/special_tokens_map.json?download=true"
|
32 |
+
|
33 |
+
# Download tokenizer.json
|
34 |
+
RUN wget -O tokenizer.json "https://huggingface.co/NeverSleep/MiquMaid-v2-2x70B-DPO/resolve/main/tokenizer.json?download=true"
|
35 |
+
|
36 |
+
# Download tokenizer.model
|
37 |
+
RUN wget -O tokenizer.model "https://huggingface.co/NeverSleep/MiquMaid-v2-2x70B-DPO/resolve/main/tokenizer.model?download=true"
|
38 |
+
|
39 |
+
# Download tokenizer_config.json
|
40 |
+
RUN wget -O tokenizer_config.json "https://huggingface.co/NeverSleep/MiquMaid-v2-2x70B-DPO/resolve/main/tokenizer_config.json?download=true"
|
41 |
|
42 |
EXPOSE 7860
|
43 |
# Should expose on all network interfaces so 0.0.0.0 not only localhost
|