janrudolph commited on
Commit
751547e
·
1 Parent(s): bd4b072

v6: Force full rebuild - CPU fix with object.__setattr__ to bypass pydantic

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -16,8 +16,8 @@ RUN pip install --no-cache-dir git+https://github.com/facebookresearch/tribev2.g
16
  COPY requirements.txt .
17
  RUN pip install --no-cache-dir -r requirements.txt
18
 
19
- # Cache-bust: v4 (start+timeline Word fields fix)
20
- LABEL version="4"
21
 
22
  # Copy app
23
  COPY app.py .
 
16
  COPY requirements.txt .
17
  RUN pip install --no-cache-dir -r requirements.txt
18
 
19
+ # Cache-bust: v6 (CPU fix: object.__setattr__ to bypass pydantic immutability)
20
+ LABEL version="6"
21
 
22
  # Copy app
23
  COPY app.py .