mirror of
https://github.com/remsky/Kokoro-FastAPI.git
synced 2025-04-13 09:39:17 +00:00
12 lines
294 B
Bash
Executable file
12 lines
294 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
# Get version from argument or use default
|
|
VERSION=${1:-"latest"}
|
|
|
|
# Build both CPU and GPU images using docker buildx bake
|
|
echo "Building CPU and GPU images..."
|
|
VERSION=$VERSION docker buildx bake --push
|
|
|
|
echo "Build complete!"
|
|
echo "Created images with version: $VERSION"
|