Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -11,6 +11,8 @@ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
|
11 |
|
12 |
RUN wget https://huggingface.co/microsoft/Phi-3-mini-4k-instruct-gguf/resolve/main/Phi-3-mini-4k-instruct-q4.gguf
|
13 |
|
|
|
|
|
14 |
COPY . .
|
15 |
|
16 |
CMD ["gunicorn", "-b", "0.0.0.0:7860", "--timeout", "300", "main:app"]
|
|
|
11 |
|
12 |
RUN wget https://huggingface.co/microsoft/Phi-3-mini-4k-instruct-gguf/resolve/main/Phi-3-mini-4k-instruct-q4.gguf
|
13 |
|
14 |
+
Run git clone https://huggingface.co/sentence-transformers/paraphrase-TinyBERT-L6-v2
|
15 |
+
|
16 |
COPY . .
|
17 |
|
18 |
CMD ["gunicorn", "-b", "0.0.0.0:7860", "--timeout", "300", "main:app"]
|