feat: add filtering for VM SKUs based on location and remove family field from VmSkuRow

This commit is contained in:
2026-04-20 23:20:44 +02:00
parent 778a74c49a
commit 86d9a3d014
3 changed files with 20 additions and 10 deletions

18
app/build.sh Executable file
View File

@@ -0,0 +1,18 @@
#!/usr/bin/env bash
REGISTRY="registry.koszewscy.waw.pl"
IMAGE_NAME="azure-image-chooser-node"
if command -v container >/dev/null; then
container build \
-t $REGISTRY/$IMAGE_NAME:latest \
--arch arm64 \
--arch amd64 \
. && \
container image push \
--arch amd64 \
$REGISTRY/$IMAGE_NAME:latest
else
echo "No compatible container builder found." >&2
exit 1
fi