diff --git a/Makefile b/Makefile index 6e70030..c42fe6f 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ TARGET=thechart -VERSION=1.6.1 +VERSION=1.7.3 ROOT=/home/will ICON=chart-671.png SHELL=fish @@ -85,7 +85,7 @@ install: ## Set up the development environment @echo "To run tests: make test" build: ## Build the Docker image @echo "Building the Docker image..." - docker buildx build --platform linux/amd64,linux/arm64 -t ${IMAGE} --push . + docker buildx build --platform linux/amd64 -t ${IMAGE} --push . deploy: ## Deploy the application as a standalone executable @echo "Deploying the application..." pyinstaller --name ${TARGET} --optimize 2 --onefile --windowed --hidden-import='PIL._tkinter_finder' --icon='${ICON}' --add-data="./.env:." --add-data='./chart-671.png:.' --add-data='./thechart_data.csv:.' --log-level=DEBUG src/main.py diff --git a/docker-build.sh b/docker-build.sh index f8da577..68ea162 100755 --- a/docker-build.sh +++ b/docker-build.sh @@ -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 . diff --git a/pyproject.toml b/pyproject.toml index 1364d58..bb37e12 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "thechart" -version = "1.6.1" +version = "1.7.3" description = "Chart to monitor your medication intake over time." readme = "README.md" requires-python = ">=3.13" diff --git a/uv.lock b/uv.lock index 6e7856b..c96022c 100644 --- a/uv.lock +++ b/uv.lock @@ -698,7 +698,7 @@ wheels = [ [[package]] name = "thechart" -version = "1.6.1" +version = "1.7.3" source = { virtual = "." } dependencies = [ { name = "colorlog" },