chore: add arm64 container deployment and Gitea CI

This commit is contained in:
Hermes Agent
2026-07-26 23:07:36 +00:00
parent 14d3baea90
commit a9bdf3b46c
5 changed files with 108 additions and 0 deletions
Executable
+11
View File
@@ -0,0 +1,11 @@
#!/bin/sh
set -eu
ROOT=$(CDPATH= cd -- "$(dirname -- "$0")/.." && pwd)
cd "$ROOT"
export PYTHONPATH="${PYTHONPATH:-.}"
export PLAYWRIGHT_BROWSERS_PATH="${PLAYWRIGHT_BROWSERS_PATH:-$ROOT/.playwright}"
exec uv run --frozen --no-dev --group runtime --group ml \
python -m uvicorn dashboard.server:app --host 0.0.0.0 --port "${PORT:-3088}"