Spaces:
Sleeping
Sleeping
made few changes
Browse files- Dockerfile +1 -1
- pyproject.toml +1 -1
- server.py → root_server.py +0 -0
Dockerfile
CHANGED
|
@@ -34,4 +34,4 @@ HEALTHCHECK --interval=30s --timeout=10s --start-period=15s --retries=3 \
|
|
| 34 |
-H "Content-Type: application/json" \
|
| 35 |
-d '{"task_id":"alert_triage"}' || exit 1
|
| 36 |
|
| 37 |
-
CMD ["python", "
|
|
|
|
| 34 |
-H "Content-Type: application/json" \
|
| 35 |
-d '{"task_id":"alert_triage"}' || exit 1
|
| 36 |
|
| 37 |
+
CMD ["python", "root_server.py"]
|
pyproject.toml
CHANGED
|
@@ -8,7 +8,7 @@ version = "1.0.0"
|
|
| 8 |
description = "SOC Incident Response OpenEnv environment"
|
| 9 |
requires-python = ">=3.10"
|
| 10 |
dependencies = [
|
| 11 |
-
"openenv>=0.2.0",
|
| 12 |
"fastapi>=0.115",
|
| 13 |
"uvicorn[standard]>=0.30",
|
| 14 |
"pydantic>=2.7",
|
|
|
|
| 8 |
description = "SOC Incident Response OpenEnv environment"
|
| 9 |
requires-python = ">=3.10"
|
| 10 |
dependencies = [
|
| 11 |
+
"openenv-core>=0.2.0",
|
| 12 |
"fastapi>=0.115",
|
| 13 |
"uvicorn[standard]>=0.30",
|
| 14 |
"pydantic>=2.7",
|
server.py → root_server.py
RENAMED
|
File without changes
|