mirror of
https://github.com/stulzq/azure-openai-proxy.git
synced 2025-12-18 23:04:19 +01:00
13 lines
208 B
Bash
13 lines
208 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
VERSION=v1.1.0
|
|
|
|
rm -rf bin
|
|
|
|
export GOOS=linux
|
|
export GOARCH=amd64
|
|
go build -trimpath -ldflags "-s -w" -o bin/azure-openai-proxy ./cmd
|
|
|
|
docker build -t stulzq/azure-openai-proxy:$VERSION . |