release/v0.7 #42

Merged
myrmidex merged 12 commits from release/v0.7 into main 2026-08-17 00:56:00 +02:00
Showing only changes of commit 6c8502f2d1 - Show all commits

View file

@ -90,7 +90,7 @@ pkgs.mkShell {
local IMAGE_NAME="dish-planner" local IMAGE_NAME="dish-planner"
echo "🔨 Building production image..." echo "🔨 Building production image..."
podman build -f Dockerfile -t ''${REGISTRY}/''${NAMESPACE}/''${IMAGE_NAME}:''${TAG} . podman build --format docker -f Dockerfile -t ''${REGISTRY}/''${NAMESPACE}/''${IMAGE_NAME}:''${TAG} .
echo " Build complete: ''${REGISTRY}/''${NAMESPACE}/''${IMAGE_NAME}:''${TAG}" echo " Build complete: ''${REGISTRY}/''${NAMESPACE}/''${IMAGE_NAME}:''${TAG}"
echo "Run 'prod-push' to push to Codeberg" echo "Run 'prod-push' to push to Codeberg"
@ -119,7 +119,7 @@ pkgs.mkShell {
local IMAGE_NAME="dish-planner" local IMAGE_NAME="dish-planner"
echo "🔨 Building production image (no cache)..." echo "🔨 Building production image (no cache)..."
podman build --no-cache -f Dockerfile -t ''${REGISTRY}/''${NAMESPACE}/''${IMAGE_NAME}:''${TAG} . podman build --format docker --no-cache -f Dockerfile -t ''${REGISTRY}/''${NAMESPACE}/''${IMAGE_NAME}:''${TAG} .
echo " Build complete: ''${REGISTRY}/''${NAMESPACE}/''${IMAGE_NAME}:''${TAG}" echo " Build complete: ''${REGISTRY}/''${NAMESPACE}/''${IMAGE_NAME}:''${TAG}"
echo "Run 'prod-push' to push to Codeberg" echo "Run 'prod-push' to push to Codeberg"