mirror of
https://github.com/mudler/LocalAI.git
synced 2026-07-30 09:57:57 -04:00
Add stable and development gallery variants for Linux and Darwin, and wire the backend build matrix so the referenced images are published. Assisted-by: Codex:gpt-5 [yq] Signed-off-by: Richard Palethorpe <io@richiejp.com>
14 lines
268 B
Makefile
14 lines
268 B
Makefile
GOCMD=go
|
|
|
|
# Packaged as a standalone gallery backend by backend/Dockerfile.golang.
|
|
cloud-proxy:
|
|
CGO_ENABLED=0 $(GOCMD) build -ldflags "$(LD_FLAGS)" -tags "$(GO_TAGS)" -o cloud-proxy ./
|
|
|
|
package:
|
|
bash package.sh
|
|
|
|
build: cloud-proxy package
|
|
|
|
clean:
|
|
rm -f cloud-proxy
|