Spaces:
Running
Running
vlff李飞飞
commited on
Commit
·
1cff82c
1
Parent(s):
8a7b57c
add cache folder
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -10,6 +10,6 @@ COPY ./requirements.txt /code/requirements.txt
|
|
10 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
11 |
|
12 |
COPY . .
|
13 |
-
RUN mkdir ./.cache/huggingface
|
14 |
RUN chmod 777 -R ./*
|
15 |
CMD ["python", "run_server.py", "--llm", "Qwen/Qwen-1_8B-Chat", "--model_server", "http://127.0.0.1:7905/v1", "--server_host", "0.0.0.0", "--workstation_port", "7860"]
|
|
|
10 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
11 |
|
12 |
COPY . .
|
13 |
+
RUN mkdir -p ./.cache/huggingface
|
14 |
RUN chmod 777 -R ./*
|
15 |
CMD ["python", "run_server.py", "--llm", "Qwen/Qwen-1_8B-Chat", "--model_server", "http://127.0.0.1:7905/v1", "--server_host", "0.0.0.0", "--workstation_port", "7860"]
|