MrTsp commited on
Commit
8a71d57
·
1 Parent(s): b7b1142

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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