sunheycho commited on
Commit
45f50dc
·
1 Parent(s): b32c828

Fix: Add missing product_comparison.py to Dockerfile

Browse files

- The file was not being copied during Docker build
- This caused ModuleNotFoundError in Hugging Face Spaces
- Now includes COPY product_comparison.py . in Dockerfile

Files changed (1) hide show
  1. Dockerfile +1 -0
Dockerfile CHANGED
@@ -20,6 +20,7 @@ RUN pip install --no-cache-dir -r requirements.txt
20
 
21
  # Copy backend code
22
  COPY api.py .
 
23
  COPY static/ static/
24
 
25
  # Static files are already copied in the previous step
 
20
 
21
  # Copy backend code
22
  COPY api.py .
23
+ COPY product_comparison.py .
24
  COPY static/ static/
25
 
26
  # Static files are already copied in the previous step