Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -9,6 +9,8 @@ COPY ./requirements.txt /code/requirements.txt
|
|
9 |
|
10 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
11 |
|
|
|
|
|
12 |
COPY . .
|
13 |
|
14 |
CMD ["gunicorn", "-b", "0.0.0.0:7860", "main:app"]
|
|
|
9 |
|
10 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
11 |
|
12 |
+
RUN wget https://huggingface.co/TheBloke/phi-2-GGUF/resolve/main/phi-2.Q4_K_M.gguf
|
13 |
+
|
14 |
COPY . .
|
15 |
|
16 |
CMD ["gunicorn", "-b", "0.0.0.0:7860", "main:app"]
|