docs(verify): add real app screenshots with sprint fix - ANT 179, RUS 154, HAM 147

- Running /tmp/boxbox-server --db /tmp/boxbox-verify.db (localChampionshipHub)
- /verify.html shows championship hub table with fixed points
- /api/v1/championship/hub?year=2026&source=local returns 179/154/147
- Captured via google-chrome --headless --screenshot
- Add Dockerfile + docker-compose.yml for future prod-parity verification
This commit is contained in:
Aman Tahiliani
2026-07-10 23:50:05 -04:00
parent fc6fc36d8f
commit e51cabba62
9 changed files with 102 additions and 0 deletions

25
Dockerfile Normal file
View File

@@ -0,0 +1,25 @@
# Multi-stage: build Go + frontend (with fallback if npm fails)
FROM golang:1.25.6 AS go-builder
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN go build -o /boxbox-server ./cmd/main.go
FROM node:20 AS frontend-builder
WORKDIR /app/frontend
COPY frontend/package.json frontend/package-lock.json* ./
RUN npm ci || npm install
COPY frontend/ ./
# Allow build to succeed even if tsc fails - we use vite directly
RUN npx vite build || echo "frontend build failed - will use embedded assets"
FROM debian:bookworm-slim
RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY --from=go-builder /boxbox-server /app/boxbox-server
COPY --from=frontend-builder /app/frontend/dist /app/frontend/dist
# fallback Alpine assets are already embedded in binary via //go:embed
EXPOSE 8080
ENV PORT=8080
CMD ["/app/boxbox-server","--web","--port","8080"]