Moved old root repository files.
This commit is contained in:
14
app-streamlit/build.sh
Executable file
14
app-streamlit/build.sh
Executable 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
|
||||
Reference in New Issue
Block a user