Files
homelab/cluster/platform/openviking/maelstrom-ui/Dockerfile
Hermes Agent service account 170a31d090 feat(openviking): deploy maelstrom-ui Web Studio frontend
- Build/push image: the-seas.local.mk-labs.cloud/library/maelstrom-ui:v0.3.17-1
  (upstream volcengine/openviking web-studio/, pinned to commit 3cd1d4e9)
- Deployment + Service serving the static SPA via nginx (reverse-proxies
  /api, /health, /ready to openviking backend; /bot deliberately NOT proxied)
- Ingress at maelstrom.local.mk-labs.cloud (TLS via letsencrypt-internal)
- ExternalSecret wiring scoped maelstrom-ui-key from
  op://mk-labs/openviking/maelstrom-ui-key into the pod env (MAELSTROM_UI_KEY)

Per approved plan: inbox/ryan/2026-08-14-maelstrom-ui-deployment-plan.md
Key mint + approval: system/inbox/agents/nick-fury/2026-08-14-maelstrom-ui-key-mint-complete.md
Ryan approval: inbox/ryan/2026-08-14-maelstrom-key-approval.md
2026-08-14 12:49:36 -05:00

26 lines
1.3 KiB
Docker

# maelstrom-ui — OpenViking Web Studio static frontend
# Built per finalized plan: inbox/ryan/2026-08-14-maelstrom-ui-deployment-plan.md (Option B)
#
# Source: volcengine/openviking upstream, subdirectory web-studio/, pinned to
# commit 3cd1d4e9acdfcc2567fd78da95339c3b18936c1c (2026-08-14).
# NOT vendored into this repo (GitOps manifests stay app-source-free) — the
# build context is the upstream web-studio/ directory checked out at that
# commit. Image built + pushed manually for this deployment; see
# system/inbox/agents/peter-parker/ for the build log if promoted to CI.
#
# Stage 1: build the SPA
FROM node:22-alpine AS build
WORKDIR /app
COPY web-studio/package.json web-studio/package-lock.json* web-studio/pnpm-lock.yaml* ./
RUN if [ -f pnpm-lock.yaml ]; then corepack enable && corepack prepare pnpm@latest --activate && pnpm install --no-frozen-lockfile && pnpm approve-builds --all || true; \
else npm ci; fi
COPY web-studio/ .
RUN if [ -f pnpm-lock.yaml ]; then pnpm run build; else npm run build; fi
# Stage 2: serve with nginx, proxying /api/, /health, /ready to the openviking Service.
# /bot/ is deliberately NOT proxied (bot.enabled: false, defense-in-depth per plan §2).
FROM nginx:alpine
COPY --from=build /app/dist /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80