mirror of
https://github.com/mudler/LocalAI
synced 2026-04-29 09:17:16 +00:00
16 lines
359 B
Bash
16 lines
359 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# Script to package runtime libraries for the fish-speech backend
|
||
|
|
# This is needed because the final Docker image is FROM scratch,
|
||
|
|
# so system libraries must be explicitly included.
|
||
|
|
|
||
|
|
set -e
|
||
|
|
|
||
|
|
CURDIR=$(dirname "$(realpath $0)")
|
||
|
|
|
||
|
|
# Create lib directory
|
||
|
|
mkdir -p $CURDIR/lib
|
||
|
|
|
||
|
|
echo "fish-speech packaging completed successfully"
|
||
|
|
ls -liah $CURDIR/lib/
|