fix: smoke test port mapping (4000, not 5000)

This commit is contained in:
2026-03-15 21:54:13 +00:00
parent 400ad97457
commit cf5d84ef0a

View File

@@ -130,7 +130,7 @@ jobs:
# ── Smoke test ────────────────────────────────────────────────────────── # ── Smoke test ──────────────────────────────────────────────────────────
- name: Smoke test — verify alpine image starts and responds - name: Smoke test — verify alpine image starts and responds
run: | run: |
docker run --rm -d --name nora-smoke -p 5555:5000 \ docker run --rm -d --name nora-smoke -p 5555:4000 -e NORA_HOST=0.0.0.0 \
${{ env.NORA }}/${{ env.IMAGE_NAME }}:latest ${{ env.NORA }}/${{ env.IMAGE_NAME }}:latest
for i in $(seq 1 10); do for i in $(seq 1 10); do
curl -sf http://localhost:5555/health && break || sleep 2 curl -sf http://localhost:5555/health && break || sleep 2