Force pip layer rebuild on HF Spaces (v2.0.3 cache bust)
Browse filesCo-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Dockerfile +3 -2
Dockerfile
CHANGED
|
@@ -29,7 +29,7 @@ RUN wget -q \
|
|
| 29 |
&& rm /tmp/kafka.tgz
|
| 30 |
|
| 31 |
# Install Python dependencies (quickfix compiles from source β allow extra time)
|
| 32 |
-
# v2.0.
|
| 33 |
RUN pip install --no-cache-dir \
|
| 34 |
kafka-python==2.0.2 \
|
| 35 |
Flask==2.2.5 \
|
|
@@ -39,7 +39,8 @@ RUN pip install --no-cache-dir \
|
|
| 39 |
pandas==2.2.3 \
|
| 40 |
scikit-learn==1.6.1 \
|
| 41 |
stable-baselines3==2.4.1 \
|
| 42 |
-
huggingface_hub==0.28.1
|
|
|
|
| 43 |
|
| 44 |
# ββ Application code (flat layout matching /app container paths) ββββββββββββββ
|
| 45 |
WORKDIR /app
|
|
|
|
| 29 |
&& rm /tmp/kafka.tgz
|
| 30 |
|
| 31 |
# Install Python dependencies (quickfix compiles from source β allow extra time)
|
| 32 |
+
# v2.0.3: force rebuild 2026-03-08
|
| 33 |
RUN pip install --no-cache-dir \
|
| 34 |
kafka-python==2.0.2 \
|
| 35 |
Flask==2.2.5 \
|
|
|
|
| 39 |
pandas==2.2.3 \
|
| 40 |
scikit-learn==1.6.1 \
|
| 41 |
stable-baselines3==2.4.1 \
|
| 42 |
+
huggingface_hub==0.28.1 \
|
| 43 |
+
&& echo "pip-v2.0.3"
|
| 44 |
|
| 45 |
# ββ Application code (flat layout matching /app container paths) ββββββββββββββ
|
| 46 |
WORKDIR /app
|