Spaces:
Sleeping
Sleeping
Commit
·
a098627
1
Parent(s):
416e232
testing "add" from docker
Browse files- Dockerfile +4 -3
Dockerfile
CHANGED
@@ -19,9 +19,10 @@ RUN mkdir translator
|
|
19 |
RUN chmod -R 777 translator
|
20 |
|
21 |
# Installing wget and downloading model.
|
22 |
-
RUN apt install wget -y
|
23 |
-
RUN wget -q -O model.bin https://huggingface.co/TheBloke/WizardLM-1.0-Uncensored-Llama2-13B-GGUF/resolve/main/wizardlm-1.0-uncensored-llama2-13b.Q5_K_M.gguf
|
24 |
-
RUN ls
|
|
|
25 |
# You can use other models! Or u can comment this two RUNs and include in Space/repo/Docker image own model with name "model.bin".
|
26 |
|
27 |
# Updating pip and installing everything from requirements
|
|
|
19 |
RUN chmod -R 777 translator
|
20 |
|
21 |
# Installing wget and downloading model.
|
22 |
+
#RUN apt install wget -y
|
23 |
+
#RUN wget -q -O model.bin https://huggingface.co/TheBloke/WizardLM-1.0-Uncensored-Llama2-13B-GGUF/resolve/main/wizardlm-1.0-uncensored-llama2-13b.Q5_K_M.gguf
|
24 |
+
#RUN ls
|
25 |
+
ADD https://huggingface.co/TheBloke/WizardLM-1.0-Uncensored-Llama2-13B-GGUF/resolve/main/wizardlm-1.0-uncensored-llama2-13b.Q5_K_M.gguf /app/model.bin
|
26 |
# You can use other models! Or u can comment this two RUNs and include in Space/repo/Docker image own model with name "model.bin".
|
27 |
|
28 |
# Updating pip and installing everything from requirements
|