- Simplified initialization logic in init.py - Consolidated testing_mode assignment - Removed unnecessary else statements - Created UIManager class to handle UI-related tasks - Modularized input frame creation, table frame creation, and graph frame creation - Enhanced edit window creation with better organization and error handling - Updated data management methods to improve clarity and maintainability - Improved logging for better debugging and tracking of application flow
21 lines
447 B
Bash
Executable File
21 lines
447 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
CONTAINER_ENGINE="docker" # podman | docker
|
|
VERSION="v1.0.0"
|
|
REGISTRY="gitea-http.taildb3494.ts.net/will/thechart"
|
|
|
|
if [ "$CONTAINER_ENGINE" == "podman" ];
|
|
then
|
|
buildah build \
|
|
-t $REGISTRY:$VERSION \
|
|
--platform linux/amd64,linux/arm64/v8 \
|
|
--no-cache .
|
|
else
|
|
DOCKER_BUILDKIT=1 \
|
|
docker buildx build \
|
|
--platform linux/amd64,linux/arm64/v8 \
|
|
-t $REGISTRY:$VERSION \
|
|
--no-cache \
|
|
--push .
|
|
fi
|