File size: 259 Bytes
6236013 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #!/bin/bash
set -ex
# Set the platform flag if we're on ARM
arch=$(uname -m)
if [[ "$arch" == "arm64" || "$arch" == "aarch64" ]]; then
platform_flag="--platform linux/amd64"
else
platform_flag=""
fi
docker build $platform_flag -t streamlittest .
|