10 lines
260 B
Bash
Executable File
10 lines
260 B
Bash
Executable File
#!/usr/bin/env bash
|
|
if command -v dockerd &> /dev/null; then
|
|
docker build -t azurite:latest .
|
|
elif command -v container &> /dev/null; then
|
|
container build -t azurite:latest .
|
|
else
|
|
echo "Neither supported container runtime found." >&2
|
|
exit 1
|
|
fi
|