Spaces:
Sleeping
Sleeping
mystic_CBK
commited on
Commit
·
cb17bf6
1
Parent(s):
bab665f
AGGRESSIVE CACHE INVALIDATION: Force HF Spaces rebuild - Updated timestamps to 08:50 UTC - Added unique ENV BUILD_ID to Dockerfile - Enhanced server.py BUILD VERSION comment - Multiple trigger mechanisms to bypass HF Spaces aggressive caching - Build trigger attempt #3
Browse files- Dockerfile +3 -1
- README.md +0 -0
- server.py +1 -1
Dockerfile
CHANGED
|
@@ -24,7 +24,9 @@ RUN pip install --no-cache-dir -r requirements_hf_spaces.txt
|
|
| 24 |
# Clone and install fairseq-signals
|
| 25 |
RUN git clone https://github.com/Jwoo5/fairseq-signals.git && cd fairseq-signals && pip install --editable ./ && python setup.py build_ext --inplace && cd ..
|
| 26 |
|
| 27 |
-
# Copy application files (updated 2025-08-25 08:
|
|
|
|
|
|
|
| 28 |
COPY . .
|
| 29 |
|
| 30 |
# Switch to app user
|
|
|
|
| 24 |
# Clone and install fairseq-signals
|
| 25 |
RUN git clone https://github.com/Jwoo5/fairseq-signals.git && cd fairseq-signals && pip install --editable ./ && python setup.py build_ext --inplace && cd ..
|
| 26 |
|
| 27 |
+
# Copy application files (updated 2025-08-25 08:50 UTC - AGGRESSIVE CACHE INVALIDATION)
|
| 28 |
+
# Build trigger attempt #3 - HF Spaces cache issue detected
|
| 29 |
+
ENV BUILD_ID="$(date +%s)_$(echo $RANDOM)"
|
| 30 |
COPY . .
|
| 31 |
|
| 32 |
# Switch to app user
|
README.md
CHANGED
|
Binary files a/README.md and b/README.md differ
|
|
|
server.py
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
"""
|
| 3 |
ECG-FM API Server with fairseq-signals Integration
|
| 4 |
Fixed import logic to prioritize fairseq_signals installation
|
| 5 |
-
BUILD VERSION: 2025-08-25 08:
|
| 6 |
"""
|
| 7 |
|
| 8 |
import os
|
|
|
|
| 2 |
"""
|
| 3 |
ECG-FM API Server with fairseq-signals Integration
|
| 4 |
Fixed import logic to prioritize fairseq_signals installation
|
| 5 |
+
BUILD VERSION: 2025-08-25 08:50 UTC - AGGRESSIVE CACHE INVALIDATION - Import fix deployed - HF Spaces cache issue detected
|
| 6 |
"""
|
| 7 |
|
| 8 |
import os
|