Spaces:
Running
Running
Invalidate Docker cache to force fresh app.py copy
Browse files- Add cache-busting comment to ensure HF Spaces rebuilds with latest code
- Dockerfile +1 -0
Dockerfile
CHANGED
|
@@ -24,5 +24,6 @@ COPY app.py .
|
|
| 24 |
# RUN python -c "from huggingface_hub import hf_hub_download; hf_hub_download(repo_id='unsloth/Qwen3-0.6B-GGUF', filename='Qwen3-0.6B-Q4_K_M.gguf', local_dir='./models')"
|
| 25 |
|
| 26 |
EXPOSE 7860
|
|
|
|
| 27 |
|
| 28 |
CMD ["python", "app.py"]
|
|
|
|
| 24 |
# RUN python -c "from huggingface_hub import hf_hub_download; hf_hub_download(repo_id='unsloth/Qwen3-0.6B-GGUF', filename='Qwen3-0.6B-Q4_K_M.gguf', local_dir='./models')"
|
| 25 |
|
| 26 |
EXPOSE 7860
|
| 27 |
+
# Cache bust: 2026-02-01-v1
|
| 28 |
|
| 29 |
CMD ["python", "app.py"]
|