upgrading nextjs to 15
CI / test (push) Successful in 6s

This commit is contained in:
2026-01-24 23:32:58 -05:00
parent 5b73d59c2c
commit d9498f8aca
24 changed files with 1927 additions and 1169 deletions
Executable
+23
View File
@@ -0,0 +1,23 @@
#!/usr/bin/env bash
set -euo pipefail
REGISTRY="gitea.gofwd.group"
OWNER="sean/shadow-gunbuilder-ai-proto"
IMAGE="webui"
TAG="$(git rev-parse --short HEAD)"
FULL_IMAGE="$REGISTRY/$OWNER/$IMAGE"
EXTRA_ARGS=()
if [[ "${NO_CACHE:-0}" == "1" ]]; then
EXTRA_ARGS+=(--no-cache)
fi
docker buildx build \
-f frontend/Dockerfile \
--platform linux/amd64,linux/arm64 \
-t "$FULL_IMAGE:$TAG" \
-t "$FULL_IMAGE:latest" \
--push \
"${EXTRA_ARGS[@]}" \
.