arun3676 commited on
Commit
b63d2cf
·
1 Parent(s): 94a1753

Force Docker rebuild to pick up permission fix

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -4
Dockerfile CHANGED
@@ -14,15 +14,13 @@ COPY requirements.txt .
14
  # Install Python dependencies
15
  RUN pip install --no-cache-dir -r requirements.txt
16
 
17
- # Copy application code
 
18
  COPY analyzer/ ./analyzer/
19
  COPY matrix_final.py .
20
  COPY run_app.py .
21
  COPY evaluation_samples/ ./evaluation_samples/
22
 
23
- # Create cache directory
24
- RUN mkdir -p /app/.cache
25
-
26
  # Expose HuggingFace Spaces default port
27
  EXPOSE 7860
28
 
 
14
  # Install Python dependencies
15
  RUN pip install --no-cache-dir -r requirements.txt
16
 
17
+ # Force rebuild from this point - Fix permission error (2025-10-25)
18
+ # Copy application code (matrix_final.py uses /tmp for cache - no permission issues)
19
  COPY analyzer/ ./analyzer/
20
  COPY matrix_final.py .
21
  COPY run_app.py .
22
  COPY evaluation_samples/ ./evaluation_samples/
23
 
 
 
 
24
  # Expose HuggingFace Spaces default port
25
  EXPOSE 7860
26