- SDXL image generation using RealVisXL_V4.0 - IP-Adapter FaceID integration for consistent face generation - Simplified API (removed client_id requirement) - New params: face_image, face_strength - 'vixy' shortcut for face-locked generation - Queue-based async job processing - FastAPI with proper error handling Co-authored-by: Alex <alex@k4zka.online>
20 lines
359 B
Bash
Executable File
20 lines
359 B
Bash
Executable File
#!/bin/bash
|
|
# Build DreamTail Docker image for Jetson AGX Orin
|
|
set -e
|
|
|
|
echo "🎨 Building DreamTail Docker image..."
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
# Build for ARM64 (Jetson architecture)
|
|
docker build \
|
|
--platform linux/arm64 \
|
|
-t dreamtail:latest \
|
|
-f Dockerfile \
|
|
.
|
|
|
|
echo "✅ Build complete!"
|
|
echo ""
|
|
echo "To run DreamTail:"
|
|
echo " ./scripts/run.sh"
|