Update Dockerfile
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
@@ -8,8 +8,8 @@ ENV PATH="/home/user/.local/bin:$PATH"
|
|
8 |
|
9 |
WORKDIR /app
|
10 |
|
11 |
-
# Download
|
12 |
-
RUN wget https://huggingface.co/cigol123/
|
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 |
+
|