feat: Update version to 1.7.3 in Makefile, docker-build.sh, and pyproject.toml

This commit is contained in:
William Valentin
2025-08-01 13:21:48 -07:00
parent 41d91d9c30
commit 623050478a
4 changed files with 7 additions and 7 deletions

View File

@@ -1,19 +1,19 @@
#!/usr/bin/bash
CONTAINER_ENGINE="docker" # podman | docker
VERSION="v1.0.0"
VERSION="v1.7.3"
REGISTRY="gitea-http.taildb3494.ts.net/will/thechart"
if [ "$CONTAINER_ENGINE" == "podman" ];
then
buildah build \
-t $REGISTRY:$VERSION \
--platform linux/amd64,linux/arm64/v8 \
--platform linux/amd64 \
--no-cache .
else
DOCKER_BUILDKIT=1 \
docker buildx build \
--platform linux/amd64,linux/arm64/v8 \
--platform linux/amd64 \
-t $REGISTRY:$VERSION \
--no-cache \
--push .