ollama/scripts/build_docker.sh

16 lines
468 B
Bash
Raw Normal View History

2023-09-26 17:38:32 +00:00
#!/bin/sh
set -eu
export VERSION=${VERSION:-$(git describe --tags --first-parent --abbrev=7 --long --dirty --always | sed -e "s/^v//g")}
2023-09-26 17:38:32 +00:00
export GOFLAGS="'-ldflags=-w -s \"-X=github.com/jmorganca/ollama/version.Version=$VERSION\" \"-X=github.com/jmorganca/ollama/server.mode=release\"'"
2024-01-03 00:32:54 +00:00
docker build \
2023-09-26 17:38:32 +00:00
--load \
--platform=linux/arm64,linux/amd64 \
--build-arg=VERSION \
--build-arg=GOFLAGS \
-f Dockerfile \
-t ollama/ollama:$VERSION \
2023-09-26 17:38:32 +00:00
.