Files
LocalAI/entrypoint.sh
2023-05-30 15:53:37 +02:00

11 lines
116 B
Bash
Executable File

#!/bin/bash
set -e
cd /build
if [ "$REBUILD" != "false" ]; then
rm -rf ./local-ai
make build
fi
./local-ai "$@"