Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
|
@@ -26,6 +26,8 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
| 26 |
# Copy app + static frontend files
|
| 27 |
COPY app.py .
|
| 28 |
COPY static/ ./static/
|
|
|
|
|
|
|
| 29 |
|
| 30 |
# HF Spaces requires port 7860
|
| 31 |
EXPOSE 7860
|
|
|
|
| 26 |
# Copy app + static frontend files
|
| 27 |
COPY app.py .
|
| 28 |
COPY static/ ./static/
|
| 29 |
+
# Copy model checkpoint (uploaded separately to HF Space repo)
|
| 30 |
+
COPY best_model.pth .
|
| 31 |
|
| 32 |
# HF Spaces requires port 7860
|
| 33 |
EXPOSE 7860
|