Antigravity Agent commited on
Commit ·
7c03d72
1
Parent(s): 3c969ac
fix(deploy): switch SDK to gradio and point to glassmorphic app.py
Browse files- Dockerfile +3 -7
- README.md +4 -4
Dockerfile
CHANGED
|
@@ -15,12 +15,8 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
| 15 |
# Copy project files
|
| 16 |
COPY . .
|
| 17 |
|
| 18 |
-
#
|
| 19 |
EXPOSE 7860
|
| 20 |
|
| 21 |
-
#
|
| 22 |
-
CMD ["
|
| 23 |
-
"--server.port=7860", \
|
| 24 |
-
"--server.address=0.0.0.0", \
|
| 25 |
-
"--server.headless=true", \
|
| 26 |
-
"--browser.gatherUsageStats=false"]
|
|
|
|
| 15 |
# Copy project files
|
| 16 |
COPY . .
|
| 17 |
|
| 18 |
+
# Gradio spaces on HF use port 7860
|
| 19 |
EXPOSE 7860
|
| 20 |
|
| 21 |
+
# Run the Gradio app
|
| 22 |
+
CMD ["python", "app.py"]
|
|
|
|
|
|
|
|
|
|
|
|
README.md
CHANGED
|
@@ -3,12 +3,12 @@ title: MVM2 Math Verification System
|
|
| 3 |
emoji: 🧮
|
| 4 |
colorFrom: red
|
| 5 |
colorTo: gray
|
| 6 |
-
sdk:
|
| 7 |
-
sdk_version:
|
| 8 |
-
app_file:
|
| 9 |
pinned: false
|
| 10 |
license: mit
|
| 11 |
-
short_description:
|
| 12 |
---
|
| 13 |
|
| 14 |
# MVM² — Multi-Model Math Verification System
|
|
|
|
| 3 |
emoji: 🧮
|
| 4 |
colorFrom: red
|
| 5 |
colorTo: gray
|
| 6 |
+
sdk: gradio
|
| 7 |
+
sdk_version: 4.0.0
|
| 8 |
+
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
license: mit
|
| 11 |
+
short_description: MVM² High-Fidelity Glassmorphic Math Verification Dashboard
|
| 12 |
---
|
| 13 |
|
| 14 |
# MVM² — Multi-Model Math Verification System
|