coderuday21 commited on
Commit
2f3e9c6
·
1 Parent(s): 3e93f39

Force Docker rebuild with cache-bust ENV to deploy IST timestamp fix

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -18,6 +18,9 @@ WORKDIR /app
18
  COPY requirements.txt .
19
  RUN pip install --no-cache-dir -r requirements.txt
20
 
 
 
 
21
  # Copy application code
22
  COPY . .
23
 
 
18
  COPY requirements.txt .
19
  RUN pip install --no-cache-dir -r requirements.txt
20
 
21
+ # Cache-bust: increment to force a fresh COPY on HF Spaces
22
+ ENV APP_BUILD=2
23
+
24
  # Copy application code
25
  COPY . .
26