Spaces:
Runtime error
Runtime error
Commit
·
37ff8ee
1
Parent(s):
d962ec8
Default model
Browse files- Dockerfile +2 -1
- README.md +1 -0
Dockerfile
CHANGED
@@ -19,7 +19,8 @@ RUN mkdir /.cache
|
|
19 |
RUN chmod -R 777 /.cache
|
20 |
|
21 |
# Install Python dependencies
|
22 |
-
COPY . /models/
|
|
|
23 |
RUN pip install --no-cache-dir -r requirements.txt
|
24 |
|
25 |
# Copy the inference script into the container
|
|
|
19 |
RUN chmod -R 777 /.cache
|
20 |
|
21 |
# Install Python dependencies
|
22 |
+
COPY requirements.txt /models/
|
23 |
+
COPY config_file.json /models/
|
24 |
RUN pip install --no-cache-dir -r requirements.txt
|
25 |
|
26 |
# Copy the inference script into the container
|
README.md
CHANGED
@@ -4,6 +4,7 @@ emoji: 🌖
|
|
4 |
colorFrom: blue
|
5 |
colorTo: purple
|
6 |
sdk: docker
|
|
|
7 |
pinned: false
|
8 |
short_description: Base DeepSeek R1 distill Llama 8B quantized GGUF
|
9 |
---
|
|
|
4 |
colorFrom: blue
|
5 |
colorTo: purple
|
6 |
sdk: docker
|
7 |
+
app_port: 7860
|
8 |
pinned: false
|
9 |
short_description: Base DeepSeek R1 distill Llama 8B quantized GGUF
|
10 |
---
|