#!/bin/sh
docker run --rm \
  -v "$(dirname "$0")":/app \
  -w /app \
  node:22-alpine \
  sh -c "npm install && npm run build"
