core/quick_push.sh
Tiago Yamamoto ebb405c4e4 feat: Update dashboard and identity-gateway infrastructure
- Add Tenants module to Identity Gateway
- Update Dashboard Auth context and components
- Refactor token service and user/role controllers
- Add Quadlet container definitions for dev environment
2025-12-31 17:41:04 -03:00

17 lines
482 B
Bash
Executable file

#!/bin/bash
set -e
REGISTRY="rg.fr-par.scw.cloud/yumi"
# Dashboard
echo "🚀 Building dashboard..."
podman build -t "$REGISTRY/dashboard:latest" ./dashboard
echo "🚀 Pushing dashboard..."
podman push "$REGISTRY/dashboard:latest"
# Identity Gateway
echo "🚀 Building identity-gateway..."
podman build -t "$REGISTRY/identity-gateway:latest" ./identity-gateway
echo "🚀 Pushing identity-gateway..."
podman push "$REGISTRY/identity-gateway:latest"
echo "✅ Quick push done!"