Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -6,6 +6,8 @@ COPY ./requirements.txt /code/requirements.txt
|
|
6 |
|
7 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
8 |
RUN pip install uvicorn
|
|
|
|
|
9 |
|
10 |
COPY ./llama-2-7b-chat.Q5_K_M.gguf /code/llama-2-7b-chat.Q5_K_M.gguf
|
11 |
COPY ./main.py /code/main.py
|
|
|
6 |
|
7 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
8 |
RUN pip install uvicorn
|
9 |
+
RUN pip install fastapi
|
10 |
+
|
11 |
|
12 |
COPY ./llama-2-7b-chat.Q5_K_M.gguf /code/llama-2-7b-chat.Q5_K_M.gguf
|
13 |
COPY ./main.py /code/main.py
|