Fix health check warnings

This commit is contained in:
myrmidex 2026-01-09 01:09:48 +01:00
parent fa3cb218a9
commit 6c8502f2d1

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"