cigol123 commited on
Commit
c0f5ddf
·
verified ·
1 Parent(s): 5520508

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -8,8 +8,8 @@ ENV PATH="/home/user/.local/bin:$PATH"
8
 
9
  WORKDIR /app
10
 
11
- # Download YUGO model
12
- RUN wget https://huggingface.co/cigol123/YUGO-GPT-Q4_0-GGUF/resolve/main/yugogpt-q4_0.gguf
13
 
14
  COPY --chown=user ./requirements.txt requirements.txt
15
 
@@ -18,3 +18,4 @@ RUN pip install --no-cache-dir --upgrade -r requirements.txt
18
  COPY --chown=user . /app
19
 
20
  CMD ["python", "app.py"]
 
 
8
 
9
  WORKDIR /app
10
 
11
+ # Download YugoGPT model with exact path
12
+ RUN wget https://huggingface.co/cigol123/YugoGPT-Q4_0-GGUF/resolve/main/YugoGPT-q4_0.gguf
13
 
14
  COPY --chown=user ./requirements.txt requirements.txt
15
 
 
18
  COPY --chown=user . /app
19
 
20
  CMD ["python", "app.py"]
21
+