not building for pis anymore

This commit is contained in:
Scott Hatlen
2025-11-05 09:13:03 -08:00
parent e3941089e1
commit d6ac68f7d3
2 changed files with 54 additions and 2 deletions

View File

@@ -40,11 +40,11 @@ fi
# Build backend image
echo "Building backend image..."
podman build --platform=linux/arm64 -t ${HARBOR_REGISTRY}/pb-backend:$VERSION ./backend
podman build -t ${HARBOR_REGISTRY}/pb-backend:$VERSION ./backend
podman tag ${HARBOR_REGISTRY}/pb-backend:$VERSION ${HARBOR_REGISTRY}/pb-backend:latest
echo "Building frontend image..."
podman build --platform=linux/arm64 -t ${HARBOR_REGISTRY}/pb-frontend:$VERSION ./frontend
podman build -t ${HARBOR_REGISTRY}/pb-frontend:$VERSION ./frontend
podman tag ${HARBOR_REGISTRY}/pb-frontend:$VERSION ${HARBOR_REGISTRY}/pb-frontend:latest
echo "\nBuild complete. Images:"