Moved old root repository files.

This commit is contained in:
2026-04-20 07:25:31 +02:00
parent 85dd574991
commit 5561f10958
3 changed files with 0 additions and 0 deletions

14
app-streamlit/build.sh Executable file
View File

@@ -0,0 +1,14 @@
#!//usr/bin/env bash
IMAGE_NAME="azure-image-chooser"
IMAGE="docker.io/skoszewski/$IMAGE_NAME:latest"
# IMAGE="skdomlab.azurecr.io/$IMAGE_NAME"
if command -v docker > /dev/null; then
docker buildx build -t $IMAGE app
elif command -v container > /dev/null; then
container build -t $IMAGE app
else
echo "No suitable container tool found"
exit 1
fi